@charset "UTF-8";
/*
  Project: Morphoria
  Author: schrittweiter GmbH
 */
/* Fonts ========================================================================== */
/* Breakpoints
   ========================================================================== */
/* Colors
   ========================================================================== */
/* Colors
   ========================================================================== */
/* Type
   ========================================================================== */
@keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
}
.plyr video,
.plyr audio,
.plyr iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}
.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}
.plyr--full-ui *,
.plyr--full-ui *::after,
.plyr--full-ui *::before {
  box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: var(--plyr-badge-background, hsl(216, 15%, 34%));
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-base, 15px);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-large, 18px);
  }
}

.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}
.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: transparent;
  border: 0;
  border-radius: var(--plyr-control-radius, 4px);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}
.plyr__control svg {
  display: block;
  fill: currentColor;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: var(--plyr-control-icon-size, 18px);
}
.plyr__control:focus {
  outline: 0;
}
.plyr__control:focus-visible {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}
a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
.plyr__control.plyr__control--pressed .label--not-pressed {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}
.plyr__controls .plyr__controls__item {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}
.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}
.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time {
  padding-left: 0;
}
.plyr__controls:empty {
  display: none;
}

.plyr [data-plyr=captions],
.plyr [data-plyr=pip],
.plyr [data-plyr=airplay],
.plyr [data-plyr=fullscreen] {
  display: none;
}

.plyr--captions-enabled [data-plyr=captions],
.plyr--pip-supported [data-plyr=pip],
.plyr--airplay-supported [data-plyr=airplay],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}
.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}
.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}
.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}
.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}
.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.plyr__menu__container::after {
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7) - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}
.plyr__menu__container [role=menu] {
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}
.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}
.plyr__menu__container .plyr__control {
  align-items: center;
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  display: flex;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 1.5) calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5);
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control::after {
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.plyr__menu__container .plyr__control--forward {
  padding-right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
}
.plyr__menu__container .plyr__control--forward::after {
  border-left-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--forward:focus-visible::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}
.plyr__menu__container .plyr__control--back {
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
  position: relative;
  width: calc(100% - calc(var(--plyr-control-spacing, 10px) * 0.7) * 2);
}
.plyr__menu__container .plyr__control--back::after {
  border-right-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--back::before {
  background: var(--plyr-menu-back-border-color, hsl(216, 15%, 88%));
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}
.plyr__menu__container .plyr__control--back:focus-visible::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}
.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before, .plyr__menu__container .plyr__control[role=menuitemradio]::after {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.plyr__menu__container .plyr__control[role=menuitemradio]:focus-visible::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(35, 40, 47, 0.1);
}
.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: calc((calc(var(--plyr-control-spacing, 10px) * 0.7) - 2px) * -1);
  overflow: hidden;
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  display: block;
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
          user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
}
.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  appearance: none;
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
}
.plyr--full-ui input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}
.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
}
.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
}
.plyr--full-ui input[type=range]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  color: transparent;
}
.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
}
.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type=range]::-ms-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}
.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}
.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}
.plyr--full-ui input[type=range]:focus {
  outline: 0;
}
.plyr--full-ui input[type=range]:focus-visible::-webkit-slider-runnable-track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range]:focus-visible::-moz-range-track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range]:focus-visible::-ms-track {
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  outline-offset: 2px;
}

.plyr__poster {
  background-color: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: var(--plyr-control-spacing, 10px);
}
@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

/* stylelint-disable selector-max-compound-selectors */
.plyr__tooltip {
  background: var(--plyr-tooltip-background, #fff);
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: var(--plyr-tooltip-color, hsl(216, 15%, 34%));
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(calc(var(--plyr-control-spacing, 10px) / 2) * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}
.plyr__tooltip::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control:focus-visible .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}
.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7));
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7));
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  transform: translate(0, 0) scale(1);
}

.plyr__progress {
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}
.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}
.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}
.plyr__progress .plyr__tooltip {
  left: 0;
  max-width: 120px;
  overflow-wrap: break-word;
}

.plyr__progress__buffer {
  -webkit-appearance: none; /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__progress__marker {
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}

.plyr__volume {
  align-items: center;
  display: flex;
  position: relative;
}
.plyr__volume input[type=range] {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  max-width: 90px;
  min-width: 60px;
  position: relative;
  z-index: 2;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, hsl(216, 15%, 34%));
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control:focus-visible, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--audio .plyr__progress__buffer {
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr--video {
  overflow: hidden;
}
.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  border-radius: inherit;
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
  .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: var(--plyr-control-spacing, 10px);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control:focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198, 100%, 50%))));
  border: 0;
  border-radius: 100%;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}
.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:hover, .plyr__control--overlaid:focus {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--video .plyr__progress__buffer {
  color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-ms-fullscreen video {
  height: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}
.plyr--fullscreen-fallback video {
  height: 100%;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.plyr__ads::after {
  background: hsl(216, 15%, 16%);
  border-radius: 2px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}
.plyr__ads:empty::after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: var(--plyr-tooltip-background, #fff);
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.plyr__preview-thumb::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr__preview-thumb__image-container {
  background: hsl(216, 15%, 79%);
  border-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.plyr__preview-thumb__image-container img, .plyr__preview-thumb__image-container::after {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr__preview-thumb__image-container::after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  content: "";
  pointer-events: none;
}
.plyr__preview-thumb__image-container img {
  max-height: none;
  max-width: none;
}
.plyr__preview-thumb__time-container {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  border-bottom-right-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}
.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}
.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

/* Bulma Utilities */
.is-unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.is-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* Bulma Helpers */
.has-text-white {
  color: hsl(0, 0%, 100%) !important;
}

a.has-text-white:hover, a.has-text-white:focus {
  color: #e6e6e6 !important;
}

.has-background-white {
  background-color: hsl(0, 0%, 100%) !important;
}

.has-text-black {
  color: hsl(0, 0%, 4%) !important;
}

a.has-text-black:hover, a.has-text-black:focus {
  color: black !important;
}

.has-background-black {
  background-color: hsl(0, 0%, 4%) !important;
}

.has-text-light {
  color: hsl(0, 0%, 96%) !important;
}

a.has-text-light:hover, a.has-text-light:focus {
  color: #dbdbdb !important;
}

.has-background-light {
  background-color: hsl(0, 0%, 96%) !important;
}

.has-text-dark {
  color: hsl(0, 0%, 21%) !important;
}

a.has-text-dark:hover, a.has-text-dark:focus {
  color: #1c1c1c !important;
}

.has-background-dark {
  background-color: hsl(0, 0%, 21%) !important;
}

.has-text-primary {
  color: hsl(171, 100%, 41%) !important;
}

a.has-text-primary:hover, a.has-text-primary:focus {
  color: #009e86 !important;
}

.has-background-primary {
  background-color: hsl(171, 100%, 41%) !important;
}

.has-text-primary-light {
  color: #ebfffc !important;
}

a.has-text-primary-light:hover, a.has-text-primary-light:focus {
  color: #b8fff4 !important;
}

.has-background-primary-light {
  background-color: #ebfffc !important;
}

.has-text-primary-dark {
  color: #00947e !important;
}

a.has-text-primary-dark:hover, a.has-text-primary-dark:focus {
  color: #00c7a9 !important;
}

.has-background-primary-dark {
  background-color: #00947e !important;
}

.has-text-link {
  color: hsl(229, 53%, 53%) !important;
}

a.has-text-link:hover, a.has-text-link:focus {
  color: #3449a8 !important;
}

.has-background-link {
  background-color: hsl(229, 53%, 53%) !important;
}

.has-text-link-light {
  color: #eff1fa !important;
}

a.has-text-link-light:hover, a.has-text-link-light:focus {
  color: #c8cfee !important;
}

.has-background-link-light {
  background-color: #eff1fa !important;
}

.has-text-link-dark {
  color: #3850b7 !important;
}

a.has-text-link-dark:hover, a.has-text-link-dark:focus {
  color: #576dcb !important;
}

.has-background-link-dark {
  background-color: #3850b7 !important;
}

.has-text-info {
  color: hsl(207, 61%, 53%) !important;
}

a.has-text-info:hover, a.has-text-info:focus {
  color: #2b74b1 !important;
}

.has-background-info {
  background-color: hsl(207, 61%, 53%) !important;
}

.has-text-info-light {
  color: #eff5fb !important;
}

a.has-text-info-light:hover, a.has-text-info-light:focus {
  color: #c6ddf1 !important;
}

.has-background-info-light {
  background-color: #eff5fb !important;
}

.has-text-info-dark {
  color: #296fa8 !important;
}

a.has-text-info-dark:hover, a.has-text-info-dark:focus {
  color: #368ace !important;
}

.has-background-info-dark {
  background-color: #296fa8 !important;
}

.has-text-success {
  color: hsl(153, 53%, 53%) !important;
}

a.has-text-success:hover, a.has-text-success:focus {
  color: #34a873 !important;
}

.has-background-success {
  background-color: hsl(153, 53%, 53%) !important;
}

.has-text-success-light {
  color: #effaf5 !important;
}

a.has-text-success-light:hover, a.has-text-success-light:focus {
  color: #c8eedd !important;
}

.has-background-success-light {
  background-color: #effaf5 !important;
}

.has-text-success-dark {
  color: #257953 !important;
}

a.has-text-success-dark:hover, a.has-text-success-dark:focus {
  color: #31a06e !important;
}

.has-background-success-dark {
  background-color: #257953 !important;
}

.has-text-warning {
  color: hsl(44, 100%, 77%) !important;
}

a.has-text-warning:hover, a.has-text-warning:focus {
  color: #ffd257 !important;
}

.has-background-warning {
  background-color: hsl(44, 100%, 77%) !important;
}

.has-text-warning-light {
  color: #fffaeb !important;
}

a.has-text-warning-light:hover, a.has-text-warning-light:focus {
  color: #ffecb8 !important;
}

.has-background-warning-light {
  background-color: #fffaeb !important;
}

.has-text-warning-dark {
  color: #946c00 !important;
}

a.has-text-warning-dark:hover, a.has-text-warning-dark:focus {
  color: #c79200 !important;
}

.has-background-warning-dark {
  background-color: #946c00 !important;
}

.has-text-danger {
  color: hsl(348, 86%, 61%) !important;
}

a.has-text-danger:hover, a.has-text-danger:focus {
  color: #ee1742 !important;
}

.has-background-danger {
  background-color: hsl(348, 86%, 61%) !important;
}

.has-text-danger-light {
  color: #feecf0 !important;
}

a.has-text-danger-light:hover, a.has-text-danger-light:focus {
  color: #fabdc9 !important;
}

.has-background-danger-light {
  background-color: #feecf0 !important;
}

.has-text-danger-dark {
  color: #cc0f35 !important;
}

a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
  color: #ee2049 !important;
}

.has-background-danger-dark {
  background-color: #cc0f35 !important;
}

.has-text-black-bis {
  color: hsl(0, 0%, 7%) !important;
}

.has-background-black-bis {
  background-color: hsl(0, 0%, 7%) !important;
}

.has-text-black-ter {
  color: hsl(0, 0%, 14%) !important;
}

.has-background-black-ter {
  background-color: hsl(0, 0%, 14%) !important;
}

.has-text-grey-darker {
  color: hsl(0, 0%, 21%) !important;
}

.has-background-grey-darker {
  background-color: hsl(0, 0%, 21%) !important;
}

.has-text-grey-dark {
  color: hsl(0, 0%, 29%) !important;
}

.has-background-grey-dark {
  background-color: hsl(0, 0%, 29%) !important;
}

.has-text-grey {
  color: hsl(0, 0%, 48%) !important;
}

.has-background-grey {
  background-color: hsl(0, 0%, 48%) !important;
}

.has-text-grey-light {
  color: hsl(0, 0%, 71%) !important;
}

.has-background-grey-light {
  background-color: hsl(0, 0%, 71%) !important;
}

.has-text-grey-lighter {
  color: hsl(0, 0%, 86%) !important;
}

.has-background-grey-lighter {
  background-color: hsl(0, 0%, 86%) !important;
}

.has-text-white-ter {
  color: hsl(0, 0%, 96%) !important;
}

.has-background-white-ter {
  background-color: hsl(0, 0%, 96%) !important;
}

.has-text-white-bis {
  color: hsl(0, 0%, 98%) !important;
}

.has-background-white-bis {
  background-color: hsl(0, 0%, 98%) !important;
}

.is-flex-direction-row {
  flex-direction: row !important;
}

.is-flex-direction-row-reverse {
  flex-direction: row-reverse !important;
}

.is-flex-direction-column {
  flex-direction: column !important;
}

.is-flex-direction-column-reverse {
  flex-direction: column-reverse !important;
}

.is-flex-wrap-nowrap {
  flex-wrap: nowrap !important;
}

.is-flex-wrap-wrap {
  flex-wrap: wrap !important;
}

.is-flex-wrap-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.is-justify-content-flex-start {
  justify-content: flex-start !important;
}

.is-justify-content-flex-end {
  justify-content: flex-end !important;
}

.is-justify-content-center {
  justify-content: center !important;
}

.is-justify-content-space-between {
  justify-content: space-between !important;
}

.is-justify-content-space-around {
  justify-content: space-around !important;
}

.is-justify-content-space-evenly {
  justify-content: space-evenly !important;
}

.is-justify-content-start {
  justify-content: start !important;
}

.is-justify-content-end {
  justify-content: end !important;
}

.is-justify-content-left {
  justify-content: left !important;
}

.is-justify-content-right {
  justify-content: right !important;
}

.is-align-content-flex-start {
  align-content: flex-start !important;
}

.is-align-content-flex-end {
  align-content: flex-end !important;
}

.is-align-content-center {
  align-content: center !important;
}

.is-align-content-space-between {
  align-content: space-between !important;
}

.is-align-content-space-around {
  align-content: space-around !important;
}

.is-align-content-space-evenly {
  align-content: space-evenly !important;
}

.is-align-content-stretch {
  align-content: stretch !important;
}

.is-align-content-start {
  align-content: start !important;
}

.is-align-content-end {
  align-content: end !important;
}

.is-align-content-baseline {
  align-content: baseline !important;
}

.is-align-items-stretch {
  align-items: stretch !important;
}

.is-align-items-flex-start {
  align-items: flex-start !important;
}

.is-align-items-flex-end {
  align-items: flex-end !important;
}

.is-align-items-center {
  align-items: center !important;
}

.is-align-items-baseline {
  align-items: baseline !important;
}

.is-align-items-start {
  align-items: start !important;
}

.is-align-items-end {
  align-items: end !important;
}

.is-align-items-self-start {
  align-items: self-start !important;
}

.is-align-items-self-end {
  align-items: self-end !important;
}

.is-align-self-auto {
  align-self: auto !important;
}

.is-align-self-flex-start {
  align-self: flex-start !important;
}

.is-align-self-flex-end {
  align-self: flex-end !important;
}

.is-align-self-center {
  align-self: center !important;
}

.is-align-self-baseline {
  align-self: baseline !important;
}

.is-align-self-stretch {
  align-self: stretch !important;
}

.is-flex-grow-0 {
  flex-grow: 0 !important;
}

.is-flex-grow-1 {
  flex-grow: 1 !important;
}

.is-flex-grow-2 {
  flex-grow: 2 !important;
}

.is-flex-grow-3 {
  flex-grow: 3 !important;
}

.is-flex-grow-4 {
  flex-grow: 4 !important;
}

.is-flex-grow-5 {
  flex-grow: 5 !important;
}

.is-flex-shrink-0 {
  flex-shrink: 0 !important;
}

.is-flex-shrink-1 {
  flex-shrink: 1 !important;
}

.is-flex-shrink-2 {
  flex-shrink: 2 !important;
}

.is-flex-shrink-3 {
  flex-shrink: 3 !important;
}

.is-flex-shrink-4 {
  flex-shrink: 4 !important;
}

.is-flex-shrink-5 {
  flex-shrink: 5 !important;
}

.is-clearfix::after {
  clear: both;
  content: " ";
  display: table;
}

.is-pulled-left {
  float: left !important;
}

.is-pulled-right {
  float: right !important;
}

.is-radiusless {
  border-radius: 0 !important;
}

.is-shadowless {
  box-shadow: none !important;
}

.is-clickable {
  cursor: pointer !important;
  pointer-events: all !important;
}

.is-clipped {
  overflow: hidden !important;
}

.is-relative {
  position: relative !important;
}

.is-marginless {
  margin: 0 !important;
}

.is-paddingless {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-5 {
  margin: 1.5rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mr-5 {
  margin-right: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.ml-5 {
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-6 {
  margin: 3rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}

.mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-5 {
  padding: 1.5rem !important;
}

.pt-5 {
  padding-top: 1.5rem !important;
}

.pr-5 {
  padding-right: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 1.5rem !important;
}

.pl-5 {
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-6 {
  padding: 3rem !important;
}

.pt-6 {
  padding-top: 3rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}

.pb-6 {
  padding-bottom: 3rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}

.px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-auto {
  padding: auto !important;
}

.pt-auto {
  padding-top: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

.px-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

.py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

.is-size-1 {
  font-size: 3rem !important;
}

.is-size-2 {
  font-size: 2.5rem !important;
}

.is-size-3 {
  font-size: 2rem !important;
}

.is-size-4 {
  font-size: 1.5rem !important;
}

.is-size-5 {
  font-size: 1.25rem !important;
}

.is-size-6 {
  font-size: 1rem !important;
}

.is-size-7 {
  font-size: 0.75rem !important;
}

@media screen and (max-width: 768px) {
  .is-size-1-mobile {
    font-size: 3rem !important;
  }
  .is-size-2-mobile {
    font-size: 2.5rem !important;
  }
  .is-size-3-mobile {
    font-size: 2rem !important;
  }
  .is-size-4-mobile {
    font-size: 1.5rem !important;
  }
  .is-size-5-mobile {
    font-size: 1.25rem !important;
  }
  .is-size-6-mobile {
    font-size: 1rem !important;
  }
  .is-size-7-mobile {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-size-1-tablet {
    font-size: 3rem !important;
  }
  .is-size-2-tablet {
    font-size: 2.5rem !important;
  }
  .is-size-3-tablet {
    font-size: 2rem !important;
  }
  .is-size-4-tablet {
    font-size: 1.5rem !important;
  }
  .is-size-5-tablet {
    font-size: 1.25rem !important;
  }
  .is-size-6-tablet {
    font-size: 1rem !important;
  }
  .is-size-7-tablet {
    font-size: 0.75rem !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-size-1-touch {
    font-size: 3rem !important;
  }
  .is-size-2-touch {
    font-size: 2.5rem !important;
  }
  .is-size-3-touch {
    font-size: 2rem !important;
  }
  .is-size-4-touch {
    font-size: 1.5rem !important;
  }
  .is-size-5-touch {
    font-size: 1.25rem !important;
  }
  .is-size-6-touch {
    font-size: 1rem !important;
  }
  .is-size-7-touch {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-size-1-desktop {
    font-size: 3rem !important;
  }
  .is-size-2-desktop {
    font-size: 2.5rem !important;
  }
  .is-size-3-desktop {
    font-size: 2rem !important;
  }
  .is-size-4-desktop {
    font-size: 1.5rem !important;
  }
  .is-size-5-desktop {
    font-size: 1.25rem !important;
  }
  .is-size-6-desktop {
    font-size: 1rem !important;
  }
  .is-size-7-desktop {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1920px) {
  .is-size-1-widescreen {
    font-size: 3rem !important;
  }
  .is-size-2-widescreen {
    font-size: 2.5rem !important;
  }
  .is-size-3-widescreen {
    font-size: 2rem !important;
  }
  .is-size-4-widescreen {
    font-size: 1.5rem !important;
  }
  .is-size-5-widescreen {
    font-size: 1.25rem !important;
  }
  .is-size-6-widescreen {
    font-size: 1rem !important;
  }
  .is-size-7-widescreen {
    font-size: 0.75rem !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-size-1-fullhd {
    font-size: 3rem !important;
  }
  .is-size-2-fullhd {
    font-size: 2.5rem !important;
  }
  .is-size-3-fullhd {
    font-size: 2rem !important;
  }
  .is-size-4-fullhd {
    font-size: 1.5rem !important;
  }
  .is-size-5-fullhd {
    font-size: 1.25rem !important;
  }
  .is-size-6-fullhd {
    font-size: 1rem !important;
  }
  .is-size-7-fullhd {
    font-size: 0.75rem !important;
  }
}
.has-text-centered {
  text-align: center !important;
}

.has-text-justified {
  text-align: justify !important;
}

.has-text-left {
  text-align: left !important;
}

.has-text-right {
  text-align: right !important;
}

@media screen and (max-width: 768px) {
  .has-text-centered-mobile {
    text-align: center !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-centered-tablet {
    text-align: center !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-centered-tablet-only {
    text-align: center !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-centered-touch {
    text-align: center !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-centered-desktop {
    text-align: center !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .has-text-centered-desktop-only {
    text-align: center !important;
  }
}
@media screen and (min-width: 1920px) {
  .has-text-centered-widescreen {
    text-align: center !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .has-text-centered-widescreen-only {
    text-align: center !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-centered-fullhd {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-justified-mobile {
    text-align: justify !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-justified-tablet {
    text-align: justify !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-justified-tablet-only {
    text-align: justify !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-justified-touch {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-justified-desktop {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .has-text-justified-desktop-only {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1920px) {
  .has-text-justified-widescreen {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .has-text-justified-widescreen-only {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-justified-fullhd {
    text-align: justify !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-left-mobile {
    text-align: left !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-left-tablet {
    text-align: left !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-left-tablet-only {
    text-align: left !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-left-touch {
    text-align: left !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-left-desktop {
    text-align: left !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .has-text-left-desktop-only {
    text-align: left !important;
  }
}
@media screen and (min-width: 1920px) {
  .has-text-left-widescreen {
    text-align: left !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .has-text-left-widescreen-only {
    text-align: left !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-left-fullhd {
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  .has-text-right-mobile {
    text-align: right !important;
  }
}
@media screen and (min-width: 769px), print {
  .has-text-right-tablet {
    text-align: right !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .has-text-right-tablet-only {
    text-align: right !important;
  }
}
@media screen and (max-width: 1023px) {
  .has-text-right-touch {
    text-align: right !important;
  }
}
@media screen and (min-width: 1024px) {
  .has-text-right-desktop {
    text-align: right !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .has-text-right-desktop-only {
    text-align: right !important;
  }
}
@media screen and (min-width: 1920px) {
  .has-text-right-widescreen {
    text-align: right !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .has-text-right-widescreen-only {
    text-align: right !important;
  }
}
@media screen and (min-width: 1408px) {
  .has-text-right-fullhd {
    text-align: right !important;
  }
}
.is-capitalized {
  text-transform: capitalize !important;
}

.is-lowercase {
  text-transform: lowercase !important;
}

.is-uppercase {
  text-transform: uppercase !important;
}

.is-italic {
  font-style: italic !important;
}

.is-underlined {
  text-decoration: underline !important;
}

.has-text-weight-light {
  font-weight: 300 !important;
}

.has-text-weight-normal {
  font-weight: 400 !important;
}

.has-text-weight-medium {
  font-weight: 500 !important;
}

.has-text-weight-semibold {
  font-weight: 600 !important;
}

.has-text-weight-bold {
  font-weight: 700 !important;
}

.is-family-primary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-secondary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-sans-serif {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

.is-family-monospace {
  font-family: monospace !important;
}

.is-family-code {
  font-family: monospace !important;
}

.is-block {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .is-block-mobile {
    display: block !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-block-tablet {
    display: block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-block-tablet-only {
    display: block !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-block-touch {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-block-desktop {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .is-block-desktop-only {
    display: block !important;
  }
}
@media screen and (min-width: 1920px) {
  .is-block-widescreen {
    display: block !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .is-block-widescreen-only {
    display: block !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-block-fullhd {
    display: block !important;
  }
}
.is-flex {
  display: flex !important;
}

@media screen and (max-width: 768px) {
  .is-flex-mobile {
    display: flex !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-flex-tablet {
    display: flex !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-flex-tablet-only {
    display: flex !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-flex-touch {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-flex-desktop {
    display: flex !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .is-flex-desktop-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1920px) {
  .is-flex-widescreen {
    display: flex !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .is-flex-widescreen-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-flex-fullhd {
    display: flex !important;
  }
}
.is-inline {
  display: inline !important;
}

@media screen and (max-width: 768px) {
  .is-inline-mobile {
    display: inline !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-tablet {
    display: inline !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-tablet-only {
    display: inline !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-touch {
    display: inline !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-desktop {
    display: inline !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .is-inline-desktop-only {
    display: inline !important;
  }
}
@media screen and (min-width: 1920px) {
  .is-inline-widescreen {
    display: inline !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .is-inline-widescreen-only {
    display: inline !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-fullhd {
    display: inline !important;
  }
}
.is-inline-block {
  display: inline-block !important;
}

@media screen and (max-width: 768px) {
  .is-inline-block-mobile {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-block-tablet {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-block-tablet-only {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-block-touch {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-block-desktop {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .is-inline-block-desktop-only {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1920px) {
  .is-inline-block-widescreen {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .is-inline-block-widescreen-only {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-block-fullhd {
    display: inline-block !important;
  }
}
.is-inline-flex {
  display: inline-flex !important;
}

@media screen and (max-width: 768px) {
  .is-inline-flex-mobile {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-inline-flex-tablet {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-inline-flex-tablet-only {
    display: inline-flex !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-inline-flex-touch {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-inline-flex-desktop {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .is-inline-flex-desktop-only {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1920px) {
  .is-inline-flex-widescreen {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .is-inline-flex-widescreen-only {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-inline-flex-fullhd {
    display: inline-flex !important;
  }
}
.is-hidden {
  display: none !important;
}

.is-sr-only {
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

@media screen and (max-width: 768px) {
  .is-hidden-mobile, .c-type-tester__formgroup--visible_widescreen, .c-type-tester__formgroup--visible, .c-type-tester__formgroup--visible_tablet, .c-my-type-tester__formgroup--visible_widescreen, .c-my-type-tester__formgroup--visible, .c-my-type-tester__formgroup--visible_tablet {
    display: none !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-hidden-tablet, .c-type-tester__formgroup--visible_mobile, .c-my-type-tester__formgroup--visible_mobile {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-hidden-tablet-only, .c-type-tester__formgroup--visible_widescreen, .c-type-tester__formgroup--visible, .c-my-type-tester__formgroup--visible_widescreen, .c-my-type-tester__formgroup--visible {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-hidden-touch {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-hidden-desktop, .c-type-tester__formgroup--visible_tablet, .c-my-type-tester__formgroup--visible_tablet {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .is-hidden-desktop-only, .c-type-tester__formgroup--visible_widescreen, .c-my-type-tester__formgroup--visible_widescreen {
    display: none !important;
  }
}
@media screen and (min-width: 1920px) {
  .is-hidden-widescreen, .c-type-tester__formgroup--visible, .c-my-type-tester__formgroup--visible {
    display: none !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .is-hidden-widescreen-only {
    display: none !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-hidden-fullhd {
    display: none !important;
  }
}
.is-invisible {
  visibility: hidden !important;
}

@media screen and (max-width: 768px) {
  .is-invisible-mobile {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 769px), print {
  .is-invisible-tablet {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .is-invisible-tablet-only {
    visibility: hidden !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-invisible-touch {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-invisible-desktop {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .is-invisible-desktop-only {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1920px) {
  .is-invisible-widescreen {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .is-invisible-widescreen-only {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1408px) {
  .is-invisible-fullhd {
    visibility: hidden !important;
  }
}
.column, .o-col {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}
.columns.is-mobile > .column.is-narrow, .columns.is-mobile > .is-narrow.o-col, .is-mobile.o-cols > .column.is-narrow, .is-mobile.o-cols > .is-narrow.o-col {
  flex: none;
  width: unset;
}
.columns.is-mobile > .column.is-full, .columns.is-mobile > .is-full.o-col, .is-mobile.o-cols > .column.is-full, .is-mobile.o-cols > .is-full.o-col {
  flex: none;
  width: 100%;
}
.columns.is-mobile > .column.is-three-quarters, .columns.is-mobile > .is-three-quarters.o-col, .is-mobile.o-cols > .column.is-three-quarters, .is-mobile.o-cols > .is-three-quarters.o-col {
  flex: none;
  width: 75%;
}
.columns.is-mobile > .column.is-two-thirds, .columns.is-mobile > .is-two-thirds.o-col, .is-mobile.o-cols > .column.is-two-thirds, .is-mobile.o-cols > .is-two-thirds.o-col {
  flex: none;
  width: 66.6666%;
}
.columns.is-mobile > .column.is-half, .columns.is-mobile > .is-half.o-col, .is-mobile.o-cols > .column.is-half, .is-mobile.o-cols > .is-half.o-col {
  flex: none;
  width: 50%;
}
.columns.is-mobile > .column.is-one-third, .columns.is-mobile > .is-one-third.o-col, .is-mobile.o-cols > .column.is-one-third, .is-mobile.o-cols > .is-one-third.o-col {
  flex: none;
  width: 33.3333%;
}
.columns.is-mobile > .column.is-one-quarter, .columns.is-mobile > .is-one-quarter.o-col, .is-mobile.o-cols > .column.is-one-quarter, .is-mobile.o-cols > .is-one-quarter.o-col {
  flex: none;
  width: 25%;
}
.columns.is-mobile > .column.is-one-fifth, .columns.is-mobile > .is-one-fifth.o-col, .is-mobile.o-cols > .column.is-one-fifth, .is-mobile.o-cols > .is-one-fifth.o-col {
  flex: none;
  width: 20%;
}
.columns.is-mobile > .column.is-two-fifths, .columns.is-mobile > .is-two-fifths.o-col, .is-mobile.o-cols > .column.is-two-fifths, .is-mobile.o-cols > .is-two-fifths.o-col {
  flex: none;
  width: 40%;
}
.columns.is-mobile > .column.is-three-fifths, .columns.is-mobile > .is-three-fifths.o-col, .is-mobile.o-cols > .column.is-three-fifths, .is-mobile.o-cols > .is-three-fifths.o-col {
  flex: none;
  width: 60%;
}
.columns.is-mobile > .column.is-four-fifths, .columns.is-mobile > .is-four-fifths.o-col, .is-mobile.o-cols > .column.is-four-fifths, .is-mobile.o-cols > .is-four-fifths.o-col {
  flex: none;
  width: 80%;
}
.columns.is-mobile > .column.is-offset-three-quarters, .columns.is-mobile > .is-offset-three-quarters.o-col, .is-mobile.o-cols > .column.is-offset-three-quarters, .is-mobile.o-cols > .is-offset-three-quarters.o-col {
  margin-left: 75%;
}
.columns.is-mobile > .column.is-offset-two-thirds, .columns.is-mobile > .is-offset-two-thirds.o-col, .is-mobile.o-cols > .column.is-offset-two-thirds, .is-mobile.o-cols > .is-offset-two-thirds.o-col {
  margin-left: 66.6666%;
}
.columns.is-mobile > .column.is-offset-half, .columns.is-mobile > .is-offset-half.o-col, .is-mobile.o-cols > .column.is-offset-half, .is-mobile.o-cols > .is-offset-half.o-col {
  margin-left: 50%;
}
.columns.is-mobile > .column.is-offset-one-third, .columns.is-mobile > .is-offset-one-third.o-col, .is-mobile.o-cols > .column.is-offset-one-third, .is-mobile.o-cols > .is-offset-one-third.o-col {
  margin-left: 33.3333%;
}
.columns.is-mobile > .column.is-offset-one-quarter, .columns.is-mobile > .is-offset-one-quarter.o-col, .is-mobile.o-cols > .column.is-offset-one-quarter, .is-mobile.o-cols > .is-offset-one-quarter.o-col {
  margin-left: 25%;
}
.columns.is-mobile > .column.is-offset-one-fifth, .columns.is-mobile > .is-offset-one-fifth.o-col, .is-mobile.o-cols > .column.is-offset-one-fifth, .is-mobile.o-cols > .is-offset-one-fifth.o-col {
  margin-left: 20%;
}
.columns.is-mobile > .column.is-offset-two-fifths, .columns.is-mobile > .is-offset-two-fifths.o-col, .is-mobile.o-cols > .column.is-offset-two-fifths, .is-mobile.o-cols > .is-offset-two-fifths.o-col {
  margin-left: 40%;
}
.columns.is-mobile > .column.is-offset-three-fifths, .columns.is-mobile > .is-offset-three-fifths.o-col, .is-mobile.o-cols > .column.is-offset-three-fifths, .is-mobile.o-cols > .is-offset-three-fifths.o-col {
  margin-left: 60%;
}
.columns.is-mobile > .column.is-offset-four-fifths, .columns.is-mobile > .is-offset-four-fifths.o-col, .is-mobile.o-cols > .column.is-offset-four-fifths, .is-mobile.o-cols > .is-offset-four-fifths.o-col {
  margin-left: 80%;
}
.columns.is-mobile > .column.is-0, .columns.is-mobile > .is-0.o-col, .is-mobile.o-cols > .column.is-0, .is-mobile.o-cols > .is-0.o-col {
  flex: none;
  width: 0%;
}
.columns.is-mobile > .column.is-offset-0, .columns.is-mobile > .is-offset-0.o-col, .is-mobile.o-cols > .column.is-offset-0, .is-mobile.o-cols > .is-offset-0.o-col {
  margin-left: 0%;
}
.columns.is-mobile > .column.is-1, .columns.is-mobile > .is-1.o-col, .is-mobile.o-cols > .column.is-1, .is-mobile.o-cols > .is-1.o-col {
  flex: none;
  width: 8.33333337%;
}
.columns.is-mobile > .column.is-offset-1, .columns.is-mobile > .is-offset-1.o-col, .is-mobile.o-cols > .column.is-offset-1, .is-mobile.o-cols > .is-offset-1.o-col {
  margin-left: 8.33333337%;
}
.columns.is-mobile > .column.is-2, .columns.is-mobile > .is-2.o-col, .is-mobile.o-cols > .column.is-2, .is-mobile.o-cols > .is-2.o-col {
  flex: none;
  width: 16.66666674%;
}
.columns.is-mobile > .column.is-offset-2, .columns.is-mobile > .is-offset-2.o-col, .is-mobile.o-cols > .column.is-offset-2, .is-mobile.o-cols > .is-offset-2.o-col {
  margin-left: 16.66666674%;
}
.columns.is-mobile > .column.is-3, .columns.is-mobile > .is-3.o-col, .is-mobile.o-cols > .column.is-3, .is-mobile.o-cols > .is-3.o-col {
  flex: none;
  width: 25%;
}
.columns.is-mobile > .column.is-offset-3, .columns.is-mobile > .is-offset-3.o-col, .is-mobile.o-cols > .column.is-offset-3, .is-mobile.o-cols > .is-offset-3.o-col {
  margin-left: 25%;
}
.columns.is-mobile > .column.is-4, .columns.is-mobile > .is-4.o-col, .is-mobile.o-cols > .column.is-4, .is-mobile.o-cols > .is-4.o-col {
  flex: none;
  width: 33.33333337%;
}
.columns.is-mobile > .column.is-offset-4, .columns.is-mobile > .is-offset-4.o-col, .is-mobile.o-cols > .column.is-offset-4, .is-mobile.o-cols > .is-offset-4.o-col {
  margin-left: 33.33333337%;
}
.columns.is-mobile > .column.is-5, .columns.is-mobile > .is-5.o-col, .is-mobile.o-cols > .column.is-5, .is-mobile.o-cols > .is-5.o-col {
  flex: none;
  width: 41.66666674%;
}
.columns.is-mobile > .column.is-offset-5, .columns.is-mobile > .is-offset-5.o-col, .is-mobile.o-cols > .column.is-offset-5, .is-mobile.o-cols > .is-offset-5.o-col {
  margin-left: 41.66666674%;
}
.columns.is-mobile > .column.is-6, .columns.is-mobile > .is-6.o-col, .is-mobile.o-cols > .column.is-6, .is-mobile.o-cols > .is-6.o-col {
  flex: none;
  width: 50%;
}
.columns.is-mobile > .column.is-offset-6, .columns.is-mobile > .is-offset-6.o-col, .is-mobile.o-cols > .column.is-offset-6, .is-mobile.o-cols > .is-offset-6.o-col {
  margin-left: 50%;
}
.columns.is-mobile > .column.is-7, .columns.is-mobile > .is-7.o-col, .is-mobile.o-cols > .column.is-7, .is-mobile.o-cols > .is-7.o-col {
  flex: none;
  width: 58.33333337%;
}
.columns.is-mobile > .column.is-offset-7, .columns.is-mobile > .is-offset-7.o-col, .is-mobile.o-cols > .column.is-offset-7, .is-mobile.o-cols > .is-offset-7.o-col {
  margin-left: 58.33333337%;
}
.columns.is-mobile > .column.is-8, .columns.is-mobile > .is-8.o-col, .is-mobile.o-cols > .column.is-8, .is-mobile.o-cols > .is-8.o-col {
  flex: none;
  width: 66.66666674%;
}
.columns.is-mobile > .column.is-offset-8, .columns.is-mobile > .is-offset-8.o-col, .is-mobile.o-cols > .column.is-offset-8, .is-mobile.o-cols > .is-offset-8.o-col {
  margin-left: 66.66666674%;
}
.columns.is-mobile > .column.is-9, .columns.is-mobile > .is-9.o-col, .is-mobile.o-cols > .column.is-9, .is-mobile.o-cols > .is-9.o-col {
  flex: none;
  width: 75%;
}
.columns.is-mobile > .column.is-offset-9, .columns.is-mobile > .is-offset-9.o-col, .is-mobile.o-cols > .column.is-offset-9, .is-mobile.o-cols > .is-offset-9.o-col {
  margin-left: 75%;
}
.columns.is-mobile > .column.is-10, .columns.is-mobile > .is-10.o-col, .is-mobile.o-cols > .column.is-10, .is-mobile.o-cols > .is-10.o-col {
  flex: none;
  width: 83.33333337%;
}
.columns.is-mobile > .column.is-offset-10, .columns.is-mobile > .is-offset-10.o-col, .is-mobile.o-cols > .column.is-offset-10, .is-mobile.o-cols > .is-offset-10.o-col {
  margin-left: 83.33333337%;
}
.columns.is-mobile > .column.is-11, .columns.is-mobile > .is-11.o-col, .is-mobile.o-cols > .column.is-11, .is-mobile.o-cols > .is-11.o-col {
  flex: none;
  width: 91.66666674%;
}
.columns.is-mobile > .column.is-offset-11, .columns.is-mobile > .is-offset-11.o-col, .is-mobile.o-cols > .column.is-offset-11, .is-mobile.o-cols > .is-offset-11.o-col {
  margin-left: 91.66666674%;
}
.columns.is-mobile > .column.is-12, .columns.is-mobile > .is-12.o-col, .is-mobile.o-cols > .column.is-12, .is-mobile.o-cols > .is-12.o-col {
  flex: none;
  width: 100%;
}
.columns.is-mobile > .column.is-offset-12, .columns.is-mobile > .is-offset-12.o-col, .is-mobile.o-cols > .column.is-offset-12, .is-mobile.o-cols > .is-offset-12.o-col {
  margin-left: 100%;
}
@media screen and (max-width: 768px) {
  .column.is-narrow-mobile, .is-narrow-mobile.o-col {
    flex: none;
    width: unset;
  }
  .column.is-full-mobile, .is-full-mobile.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-mobile, .is-three-quarters-mobile.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-mobile, .is-two-thirds-mobile.o-col {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-mobile, .is-half-mobile.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-mobile, .is-one-third-mobile.o-col {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-mobile, .is-one-quarter-mobile.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-mobile, .is-one-fifth-mobile.o-col {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-mobile, .is-two-fifths-mobile.o-col {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-mobile, .is-three-fifths-mobile.o-col {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-mobile, .is-four-fifths-mobile.o-col {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-mobile, .is-offset-three-quarters-mobile.o-col {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-mobile, .is-offset-two-thirds-mobile.o-col {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-mobile, .is-offset-half-mobile.o-col {
    margin-left: 50%;
  }
  .column.is-offset-one-third-mobile, .is-offset-one-third-mobile.o-col {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-mobile, .is-offset-one-quarter-mobile.o-col {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-mobile, .is-offset-one-fifth-mobile.o-col {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-mobile, .is-offset-two-fifths-mobile.o-col {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-mobile, .is-offset-three-fifths-mobile.o-col {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-mobile, .is-offset-four-fifths-mobile.o-col {
    margin-left: 80%;
  }
  .column.is-0-mobile, .is-0-mobile.o-col {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-mobile, .is-offset-0-mobile.o-col {
    margin-left: 0%;
  }
  .column.is-1-mobile, .is-1-mobile.o-col {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-mobile, .is-offset-1-mobile.o-col {
    margin-left: 8.33333337%;
  }
  .column.is-2-mobile, .is-2-mobile.o-col {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-mobile, .is-offset-2-mobile.o-col {
    margin-left: 16.66666674%;
  }
  .column.is-3-mobile, .is-3-mobile.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-mobile, .is-offset-3-mobile.o-col {
    margin-left: 25%;
  }
  .column.is-4-mobile, .is-4-mobile.o-col {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-mobile, .is-offset-4-mobile.o-col {
    margin-left: 33.33333337%;
  }
  .column.is-5-mobile, .is-5-mobile.o-col {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-mobile, .is-offset-5-mobile.o-col {
    margin-left: 41.66666674%;
  }
  .column.is-6-mobile, .is-6-mobile.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-mobile, .is-offset-6-mobile.o-col {
    margin-left: 50%;
  }
  .column.is-7-mobile, .is-7-mobile.o-col {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-mobile, .is-offset-7-mobile.o-col {
    margin-left: 58.33333337%;
  }
  .column.is-8-mobile, .is-8-mobile.o-col {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-mobile, .is-offset-8-mobile.o-col {
    margin-left: 66.66666674%;
  }
  .column.is-9-mobile, .is-9-mobile.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-mobile, .is-offset-9-mobile.o-col {
    margin-left: 75%;
  }
  .column.is-10-mobile, .is-10-mobile.o-col {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-mobile, .is-offset-10-mobile.o-col {
    margin-left: 83.33333337%;
  }
  .column.is-11-mobile, .is-11-mobile.o-col {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-mobile, .is-offset-11-mobile.o-col {
    margin-left: 91.66666674%;
  }
  .column.is-12-mobile, .is-12-mobile.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-mobile, .is-offset-12-mobile.o-col {
    margin-left: 100%;
  }
}
@media screen and (min-width: 769px), print {
  .column.is-narrow, .is-narrow.o-col, .column.is-narrow-tablet, .is-narrow-tablet.o-col {
    flex: none;
    width: unset;
  }
  .column.is-full, .is-full.o-col, .column.is-full-tablet, .is-full-tablet.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters, .is-three-quarters.o-col, .column.is-three-quarters-tablet, .is-three-quarters-tablet.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds, .is-two-thirds.o-col, .column.is-two-thirds-tablet, .is-two-thirds-tablet.o-col {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half, .is-half.o-col, .column.is-half-tablet, .is-half-tablet.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-one-third, .is-one-third.o-col, .column.is-one-third-tablet, .is-one-third-tablet.o-col {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter, .is-one-quarter.o-col, .column.is-one-quarter-tablet, .is-one-quarter-tablet.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth, .is-one-fifth.o-col, .column.is-one-fifth-tablet, .is-one-fifth-tablet.o-col {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths, .is-two-fifths.o-col, .column.is-two-fifths-tablet, .is-two-fifths-tablet.o-col {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths, .is-three-fifths.o-col, .column.is-three-fifths-tablet, .is-three-fifths-tablet.o-col {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths, .is-four-fifths.o-col, .column.is-four-fifths-tablet, .is-four-fifths-tablet.o-col {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters, .is-offset-three-quarters.o-col, .column.is-offset-three-quarters-tablet, .is-offset-three-quarters-tablet.o-col {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds, .is-offset-two-thirds.o-col, .column.is-offset-two-thirds-tablet, .is-offset-two-thirds-tablet.o-col {
    margin-left: 66.6666%;
  }
  .column.is-offset-half, .is-offset-half.o-col, .column.is-offset-half-tablet, .is-offset-half-tablet.o-col {
    margin-left: 50%;
  }
  .column.is-offset-one-third, .is-offset-one-third.o-col, .column.is-offset-one-third-tablet, .is-offset-one-third-tablet.o-col {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter, .is-offset-one-quarter.o-col, .column.is-offset-one-quarter-tablet, .is-offset-one-quarter-tablet.o-col {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth, .is-offset-one-fifth.o-col, .column.is-offset-one-fifth-tablet, .is-offset-one-fifth-tablet.o-col {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths, .is-offset-two-fifths.o-col, .column.is-offset-two-fifths-tablet, .is-offset-two-fifths-tablet.o-col {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths, .is-offset-three-fifths.o-col, .column.is-offset-three-fifths-tablet, .is-offset-three-fifths-tablet.o-col {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths, .is-offset-four-fifths.o-col, .column.is-offset-four-fifths-tablet, .is-offset-four-fifths-tablet.o-col {
    margin-left: 80%;
  }
  .column.is-0, .is-0.o-col, .column.is-0-tablet, .is-0-tablet.o-col {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0, .is-offset-0.o-col, .column.is-offset-0-tablet, .is-offset-0-tablet.o-col {
    margin-left: 0%;
  }
  .column.is-1, .is-1.o-col, .column.is-1-tablet, .is-1-tablet.o-col {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1, .is-offset-1.o-col, .column.is-offset-1-tablet, .is-offset-1-tablet.o-col {
    margin-left: 8.33333337%;
  }
  .column.is-2, .is-2.o-col, .column.is-2-tablet, .is-2-tablet.o-col {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2, .is-offset-2.o-col, .column.is-offset-2-tablet, .is-offset-2-tablet.o-col {
    margin-left: 16.66666674%;
  }
  .column.is-3, .is-3.o-col, .column.is-3-tablet, .is-3-tablet.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3, .is-offset-3.o-col, .column.is-offset-3-tablet, .is-offset-3-tablet.o-col {
    margin-left: 25%;
  }
  .column.is-4, .is-4.o-col, .column.is-4-tablet, .is-4-tablet.o-col {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4, .is-offset-4.o-col, .column.is-offset-4-tablet, .is-offset-4-tablet.o-col {
    margin-left: 33.33333337%;
  }
  .column.is-5, .is-5.o-col, .column.is-5-tablet, .is-5-tablet.o-col {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5, .is-offset-5.o-col, .column.is-offset-5-tablet, .is-offset-5-tablet.o-col {
    margin-left: 41.66666674%;
  }
  .column.is-6, .is-6.o-col, .column.is-6-tablet, .is-6-tablet.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6, .is-offset-6.o-col, .column.is-offset-6-tablet, .is-offset-6-tablet.o-col {
    margin-left: 50%;
  }
  .column.is-7, .is-7.o-col, .column.is-7-tablet, .is-7-tablet.o-col {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7, .is-offset-7.o-col, .column.is-offset-7-tablet, .is-offset-7-tablet.o-col {
    margin-left: 58.33333337%;
  }
  .column.is-8, .is-8.o-col, .column.is-8-tablet, .is-8-tablet.o-col {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8, .is-offset-8.o-col, .column.is-offset-8-tablet, .is-offset-8-tablet.o-col {
    margin-left: 66.66666674%;
  }
  .column.is-9, .is-9.o-col, .column.is-9-tablet, .is-9-tablet.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9, .is-offset-9.o-col, .column.is-offset-9-tablet, .is-offset-9-tablet.o-col {
    margin-left: 75%;
  }
  .column.is-10, .is-10.o-col, .column.is-10-tablet, .is-10-tablet.o-col {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10, .is-offset-10.o-col, .column.is-offset-10-tablet, .is-offset-10-tablet.o-col {
    margin-left: 83.33333337%;
  }
  .column.is-11, .is-11.o-col, .column.is-11-tablet, .is-11-tablet.o-col {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11, .is-offset-11.o-col, .column.is-offset-11-tablet, .is-offset-11-tablet.o-col {
    margin-left: 91.66666674%;
  }
  .column.is-12, .is-12.o-col, .column.is-12-tablet, .is-12-tablet.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12, .is-offset-12.o-col, .column.is-offset-12-tablet, .is-offset-12-tablet.o-col {
    margin-left: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .column.is-narrow-touch, .is-narrow-touch.o-col {
    flex: none;
    width: unset;
  }
  .column.is-full-touch, .is-full-touch.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-touch, .is-three-quarters-touch.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-touch, .is-two-thirds-touch.o-col {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-touch, .is-half-touch.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-touch, .is-one-third-touch.o-col {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-touch, .is-one-quarter-touch.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-touch, .is-one-fifth-touch.o-col {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-touch, .is-two-fifths-touch.o-col {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-touch, .is-three-fifths-touch.o-col {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-touch, .is-four-fifths-touch.o-col {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-touch, .is-offset-three-quarters-touch.o-col {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-touch, .is-offset-two-thirds-touch.o-col {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-touch, .is-offset-half-touch.o-col {
    margin-left: 50%;
  }
  .column.is-offset-one-third-touch, .is-offset-one-third-touch.o-col {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-touch, .is-offset-one-quarter-touch.o-col {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-touch, .is-offset-one-fifth-touch.o-col {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-touch, .is-offset-two-fifths-touch.o-col {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-touch, .is-offset-three-fifths-touch.o-col {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-touch, .is-offset-four-fifths-touch.o-col {
    margin-left: 80%;
  }
  .column.is-0-touch, .is-0-touch.o-col {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-touch, .is-offset-0-touch.o-col {
    margin-left: 0%;
  }
  .column.is-1-touch, .is-1-touch.o-col {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-touch, .is-offset-1-touch.o-col {
    margin-left: 8.33333337%;
  }
  .column.is-2-touch, .is-2-touch.o-col {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-touch, .is-offset-2-touch.o-col {
    margin-left: 16.66666674%;
  }
  .column.is-3-touch, .is-3-touch.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-touch, .is-offset-3-touch.o-col {
    margin-left: 25%;
  }
  .column.is-4-touch, .is-4-touch.o-col {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-touch, .is-offset-4-touch.o-col {
    margin-left: 33.33333337%;
  }
  .column.is-5-touch, .is-5-touch.o-col {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-touch, .is-offset-5-touch.o-col {
    margin-left: 41.66666674%;
  }
  .column.is-6-touch, .is-6-touch.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-touch, .is-offset-6-touch.o-col {
    margin-left: 50%;
  }
  .column.is-7-touch, .is-7-touch.o-col {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-touch, .is-offset-7-touch.o-col {
    margin-left: 58.33333337%;
  }
  .column.is-8-touch, .is-8-touch.o-col {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-touch, .is-offset-8-touch.o-col {
    margin-left: 66.66666674%;
  }
  .column.is-9-touch, .is-9-touch.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-touch, .is-offset-9-touch.o-col {
    margin-left: 75%;
  }
  .column.is-10-touch, .is-10-touch.o-col {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-touch, .is-offset-10-touch.o-col {
    margin-left: 83.33333337%;
  }
  .column.is-11-touch, .is-11-touch.o-col {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-touch, .is-offset-11-touch.o-col {
    margin-left: 91.66666674%;
  }
  .column.is-12-touch, .is-12-touch.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-touch, .is-offset-12-touch.o-col {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .column.is-narrow-desktop, .is-narrow-desktop.o-col {
    flex: none;
    width: unset;
  }
  .column.is-full-desktop, .is-full-desktop.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-desktop, .is-three-quarters-desktop.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-desktop, .is-two-thirds-desktop.o-col {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-desktop, .is-half-desktop.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-desktop, .is-one-third-desktop.o-col {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-desktop, .is-one-quarter-desktop.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-desktop, .is-one-fifth-desktop.o-col {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-desktop, .is-two-fifths-desktop.o-col {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-desktop, .is-three-fifths-desktop.o-col {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-desktop, .is-four-fifths-desktop.o-col {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-desktop, .is-offset-three-quarters-desktop.o-col {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-desktop, .is-offset-two-thirds-desktop.o-col {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-desktop, .is-offset-half-desktop.o-col {
    margin-left: 50%;
  }
  .column.is-offset-one-third-desktop, .is-offset-one-third-desktop.o-col {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-desktop, .is-offset-one-quarter-desktop.o-col {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-desktop, .is-offset-one-fifth-desktop.o-col {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-desktop, .is-offset-two-fifths-desktop.o-col {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-desktop, .is-offset-three-fifths-desktop.o-col {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-desktop, .is-offset-four-fifths-desktop.o-col {
    margin-left: 80%;
  }
  .column.is-0-desktop, .is-0-desktop.o-col {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-desktop, .is-offset-0-desktop.o-col {
    margin-left: 0%;
  }
  .column.is-1-desktop, .is-1-desktop.o-col {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-desktop, .is-offset-1-desktop.o-col {
    margin-left: 8.33333337%;
  }
  .column.is-2-desktop, .is-2-desktop.o-col {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-desktop, .is-offset-2-desktop.o-col {
    margin-left: 16.66666674%;
  }
  .column.is-3-desktop, .is-3-desktop.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-desktop, .is-offset-3-desktop.o-col {
    margin-left: 25%;
  }
  .column.is-4-desktop, .is-4-desktop.o-col {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-desktop, .is-offset-4-desktop.o-col {
    margin-left: 33.33333337%;
  }
  .column.is-5-desktop, .is-5-desktop.o-col {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-desktop, .is-offset-5-desktop.o-col {
    margin-left: 41.66666674%;
  }
  .column.is-6-desktop, .is-6-desktop.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-desktop, .is-offset-6-desktop.o-col {
    margin-left: 50%;
  }
  .column.is-7-desktop, .is-7-desktop.o-col {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-desktop, .is-offset-7-desktop.o-col {
    margin-left: 58.33333337%;
  }
  .column.is-8-desktop, .is-8-desktop.o-col {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-desktop, .is-offset-8-desktop.o-col {
    margin-left: 66.66666674%;
  }
  .column.is-9-desktop, .is-9-desktop.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-desktop, .is-offset-9-desktop.o-col {
    margin-left: 75%;
  }
  .column.is-10-desktop, .is-10-desktop.o-col {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-desktop, .is-offset-10-desktop.o-col {
    margin-left: 83.33333337%;
  }
  .column.is-11-desktop, .is-11-desktop.o-col {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-desktop, .is-offset-11-desktop.o-col {
    margin-left: 91.66666674%;
  }
  .column.is-12-desktop, .is-12-desktop.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-desktop, .is-offset-12-desktop.o-col {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1920px) {
  .column.is-narrow-widescreen, .is-narrow-widescreen.o-col {
    flex: none;
    width: unset;
  }
  .column.is-full-widescreen, .is-full-widescreen.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-widescreen, .is-three-quarters-widescreen.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-widescreen, .is-two-thirds-widescreen.o-col {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-widescreen, .is-half-widescreen.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-widescreen, .is-one-third-widescreen.o-col {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-widescreen, .is-one-quarter-widescreen.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-widescreen, .is-one-fifth-widescreen.o-col {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-widescreen, .is-two-fifths-widescreen.o-col {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-widescreen, .is-three-fifths-widescreen.o-col {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-widescreen, .is-four-fifths-widescreen.o-col {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-widescreen, .is-offset-three-quarters-widescreen.o-col {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-widescreen, .is-offset-two-thirds-widescreen.o-col {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-widescreen, .is-offset-half-widescreen.o-col {
    margin-left: 50%;
  }
  .column.is-offset-one-third-widescreen, .is-offset-one-third-widescreen.o-col {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-widescreen, .is-offset-one-quarter-widescreen.o-col {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-widescreen, .is-offset-one-fifth-widescreen.o-col {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-widescreen, .is-offset-two-fifths-widescreen.o-col {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-widescreen, .is-offset-three-fifths-widescreen.o-col {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-widescreen, .is-offset-four-fifths-widescreen.o-col {
    margin-left: 80%;
  }
  .column.is-0-widescreen, .is-0-widescreen.o-col {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-widescreen, .is-offset-0-widescreen.o-col {
    margin-left: 0%;
  }
  .column.is-1-widescreen, .is-1-widescreen.o-col {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-widescreen, .is-offset-1-widescreen.o-col {
    margin-left: 8.33333337%;
  }
  .column.is-2-widescreen, .is-2-widescreen.o-col {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-widescreen, .is-offset-2-widescreen.o-col {
    margin-left: 16.66666674%;
  }
  .column.is-3-widescreen, .is-3-widescreen.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-widescreen, .is-offset-3-widescreen.o-col {
    margin-left: 25%;
  }
  .column.is-4-widescreen, .is-4-widescreen.o-col {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-widescreen, .is-offset-4-widescreen.o-col {
    margin-left: 33.33333337%;
  }
  .column.is-5-widescreen, .is-5-widescreen.o-col {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-widescreen, .is-offset-5-widescreen.o-col {
    margin-left: 41.66666674%;
  }
  .column.is-6-widescreen, .is-6-widescreen.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-widescreen, .is-offset-6-widescreen.o-col {
    margin-left: 50%;
  }
  .column.is-7-widescreen, .is-7-widescreen.o-col {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-widescreen, .is-offset-7-widescreen.o-col {
    margin-left: 58.33333337%;
  }
  .column.is-8-widescreen, .is-8-widescreen.o-col {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-widescreen, .is-offset-8-widescreen.o-col {
    margin-left: 66.66666674%;
  }
  .column.is-9-widescreen, .is-9-widescreen.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-widescreen, .is-offset-9-widescreen.o-col {
    margin-left: 75%;
  }
  .column.is-10-widescreen, .is-10-widescreen.o-col {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-widescreen, .is-offset-10-widescreen.o-col {
    margin-left: 83.33333337%;
  }
  .column.is-11-widescreen, .is-11-widescreen.o-col {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-widescreen, .is-offset-11-widescreen.o-col {
    margin-left: 91.66666674%;
  }
  .column.is-12-widescreen, .is-12-widescreen.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-widescreen, .is-offset-12-widescreen.o-col {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1408px) {
  .column.is-narrow-fullhd, .is-narrow-fullhd.o-col {
    flex: none;
    width: unset;
  }
  .column.is-full-fullhd, .is-full-fullhd.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-three-quarters-fullhd, .is-three-quarters-fullhd.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-two-thirds-fullhd, .is-two-thirds-fullhd.o-col {
    flex: none;
    width: 66.6666%;
  }
  .column.is-half-fullhd, .is-half-fullhd.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-one-third-fullhd, .is-one-third-fullhd.o-col {
    flex: none;
    width: 33.3333%;
  }
  .column.is-one-quarter-fullhd, .is-one-quarter-fullhd.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-one-fifth-fullhd, .is-one-fifth-fullhd.o-col {
    flex: none;
    width: 20%;
  }
  .column.is-two-fifths-fullhd, .is-two-fifths-fullhd.o-col {
    flex: none;
    width: 40%;
  }
  .column.is-three-fifths-fullhd, .is-three-fifths-fullhd.o-col {
    flex: none;
    width: 60%;
  }
  .column.is-four-fifths-fullhd, .is-four-fifths-fullhd.o-col {
    flex: none;
    width: 80%;
  }
  .column.is-offset-three-quarters-fullhd, .is-offset-three-quarters-fullhd.o-col {
    margin-left: 75%;
  }
  .column.is-offset-two-thirds-fullhd, .is-offset-two-thirds-fullhd.o-col {
    margin-left: 66.6666%;
  }
  .column.is-offset-half-fullhd, .is-offset-half-fullhd.o-col {
    margin-left: 50%;
  }
  .column.is-offset-one-third-fullhd, .is-offset-one-third-fullhd.o-col {
    margin-left: 33.3333%;
  }
  .column.is-offset-one-quarter-fullhd, .is-offset-one-quarter-fullhd.o-col {
    margin-left: 25%;
  }
  .column.is-offset-one-fifth-fullhd, .is-offset-one-fifth-fullhd.o-col {
    margin-left: 20%;
  }
  .column.is-offset-two-fifths-fullhd, .is-offset-two-fifths-fullhd.o-col {
    margin-left: 40%;
  }
  .column.is-offset-three-fifths-fullhd, .is-offset-three-fifths-fullhd.o-col {
    margin-left: 60%;
  }
  .column.is-offset-four-fifths-fullhd, .is-offset-four-fifths-fullhd.o-col {
    margin-left: 80%;
  }
  .column.is-0-fullhd, .is-0-fullhd.o-col {
    flex: none;
    width: 0%;
  }
  .column.is-offset-0-fullhd, .is-offset-0-fullhd.o-col {
    margin-left: 0%;
  }
  .column.is-1-fullhd, .is-1-fullhd.o-col {
    flex: none;
    width: 8.33333337%;
  }
  .column.is-offset-1-fullhd, .is-offset-1-fullhd.o-col {
    margin-left: 8.33333337%;
  }
  .column.is-2-fullhd, .is-2-fullhd.o-col {
    flex: none;
    width: 16.66666674%;
  }
  .column.is-offset-2-fullhd, .is-offset-2-fullhd.o-col {
    margin-left: 16.66666674%;
  }
  .column.is-3-fullhd, .is-3-fullhd.o-col {
    flex: none;
    width: 25%;
  }
  .column.is-offset-3-fullhd, .is-offset-3-fullhd.o-col {
    margin-left: 25%;
  }
  .column.is-4-fullhd, .is-4-fullhd.o-col {
    flex: none;
    width: 33.33333337%;
  }
  .column.is-offset-4-fullhd, .is-offset-4-fullhd.o-col {
    margin-left: 33.33333337%;
  }
  .column.is-5-fullhd, .is-5-fullhd.o-col {
    flex: none;
    width: 41.66666674%;
  }
  .column.is-offset-5-fullhd, .is-offset-5-fullhd.o-col {
    margin-left: 41.66666674%;
  }
  .column.is-6-fullhd, .is-6-fullhd.o-col {
    flex: none;
    width: 50%;
  }
  .column.is-offset-6-fullhd, .is-offset-6-fullhd.o-col {
    margin-left: 50%;
  }
  .column.is-7-fullhd, .is-7-fullhd.o-col {
    flex: none;
    width: 58.33333337%;
  }
  .column.is-offset-7-fullhd, .is-offset-7-fullhd.o-col {
    margin-left: 58.33333337%;
  }
  .column.is-8-fullhd, .is-8-fullhd.o-col {
    flex: none;
    width: 66.66666674%;
  }
  .column.is-offset-8-fullhd, .is-offset-8-fullhd.o-col {
    margin-left: 66.66666674%;
  }
  .column.is-9-fullhd, .is-9-fullhd.o-col {
    flex: none;
    width: 75%;
  }
  .column.is-offset-9-fullhd, .is-offset-9-fullhd.o-col {
    margin-left: 75%;
  }
  .column.is-10-fullhd, .is-10-fullhd.o-col {
    flex: none;
    width: 83.33333337%;
  }
  .column.is-offset-10-fullhd, .is-offset-10-fullhd.o-col {
    margin-left: 83.33333337%;
  }
  .column.is-11-fullhd, .is-11-fullhd.o-col {
    flex: none;
    width: 91.66666674%;
  }
  .column.is-offset-11-fullhd, .is-offset-11-fullhd.o-col {
    margin-left: 91.66666674%;
  }
  .column.is-12-fullhd, .is-12-fullhd.o-col {
    flex: none;
    width: 100%;
  }
  .column.is-offset-12-fullhd, .is-offset-12-fullhd.o-col {
    margin-left: 100%;
  }
}

.columns, .o-cols {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.columns:last-child, .o-cols:last-child {
  margin-bottom: -0.75rem;
}
.columns:not(:last-child), .o-cols:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}
.columns.is-centered, .is-centered.o-cols {
  justify-content: center;
}
.columns.is-gapless, .is-gapless.o-cols {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.columns.is-gapless > .column, .columns.is-gapless > .o-col, .is-gapless.o-cols > .column, .is-gapless.o-cols > .o-col {
  margin: 0;
  padding: 0 !important;
}
.columns.is-gapless:not(:last-child), .is-gapless.o-cols:not(:last-child) {
  margin-bottom: 1.5rem;
}
.columns.is-gapless:last-child, .is-gapless.o-cols:last-child {
  margin-bottom: 0;
}
.columns.is-mobile, .is-mobile.o-cols {
  display: flex;
}
.columns.is-multiline, .is-multiline.o-cols {
  flex-wrap: wrap;
}
.columns.is-vcentered, .is-vcentered.o-cols {
  align-items: center;
}
@media screen and (min-width: 769px), print {
  .columns:not(.is-desktop), .o-cols:not(.is-desktop) {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-desktop, .is-desktop.o-cols {
    display: flex;
  }
}

.columns.is-variable, .is-variable.o-cols {
  --columnGap: 0.75rem;
  margin-left: calc(-1 * var(--columnGap));
  margin-right: calc(-1 * var(--columnGap));
}
.columns.is-variable > .column, .columns.is-variable > .o-col, .is-variable.o-cols > .column, .is-variable.o-cols > .o-col {
  padding-left: var(--columnGap);
  padding-right: var(--columnGap);
}
.columns.is-variable.is-0, .is-variable.is-0.o-cols {
  --columnGap: 0rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-0-mobile, .is-variable.is-0-mobile.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-0-tablet, .is-variable.is-0-tablet.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-0-tablet-only, .is-variable.is-0-tablet-only.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-0-touch, .is-variable.is-0-touch.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-0-desktop, .is-variable.is-0-desktop.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .columns.is-variable.is-0-desktop-only, .is-variable.is-0-desktop-only.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1920px) {
  .columns.is-variable.is-0-widescreen, .is-variable.is-0-widescreen.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .columns.is-variable.is-0-widescreen-only, .is-variable.is-0-widescreen-only.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-0-fullhd, .is-variable.is-0-fullhd.o-cols {
    --columnGap: 0rem;
  }
}
.columns.is-variable.is-1, .is-variable.is-1.o-cols {
  --columnGap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-1-mobile, .is-variable.is-1-mobile.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-1-tablet, .is-variable.is-1-tablet.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-1-tablet-only, .is-variable.is-1-tablet-only.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-1-touch, .is-variable.is-1-touch.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-1-desktop, .is-variable.is-1-desktop.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .columns.is-variable.is-1-desktop-only, .is-variable.is-1-desktop-only.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .columns.is-variable.is-1-widescreen, .is-variable.is-1-widescreen.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .columns.is-variable.is-1-widescreen-only, .is-variable.is-1-widescreen-only.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-1-fullhd, .is-variable.is-1-fullhd.o-cols {
    --columnGap: 0.25rem;
  }
}
.columns.is-variable.is-2, .is-variable.is-2.o-cols {
  --columnGap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-2-mobile, .is-variable.is-2-mobile.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-2-tablet, .is-variable.is-2-tablet.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-2-tablet-only, .is-variable.is-2-tablet-only.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-2-touch, .is-variable.is-2-touch.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-2-desktop, .is-variable.is-2-desktop.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .columns.is-variable.is-2-desktop-only, .is-variable.is-2-desktop-only.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .columns.is-variable.is-2-widescreen, .is-variable.is-2-widescreen.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .columns.is-variable.is-2-widescreen-only, .is-variable.is-2-widescreen-only.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-2-fullhd, .is-variable.is-2-fullhd.o-cols {
    --columnGap: 0.5rem;
  }
}
.columns.is-variable.is-3, .is-variable.is-3.o-cols {
  --columnGap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-3-mobile, .is-variable.is-3-mobile.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-3-tablet, .is-variable.is-3-tablet.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-3-tablet-only, .is-variable.is-3-tablet-only.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-3-touch, .is-variable.is-3-touch.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-3-desktop, .is-variable.is-3-desktop.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .columns.is-variable.is-3-desktop-only, .is-variable.is-3-desktop-only.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1920px) {
  .columns.is-variable.is-3-widescreen, .is-variable.is-3-widescreen.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .columns.is-variable.is-3-widescreen-only, .is-variable.is-3-widescreen-only.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-3-fullhd, .is-variable.is-3-fullhd.o-cols {
    --columnGap: 0.75rem;
  }
}
.columns.is-variable.is-4, .is-variable.is-4.o-cols {
  --columnGap: 1rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-4-mobile, .is-variable.is-4-mobile.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-4-tablet, .is-variable.is-4-tablet.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-4-tablet-only, .is-variable.is-4-tablet-only.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-4-touch, .is-variable.is-4-touch.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-4-desktop, .is-variable.is-4-desktop.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .columns.is-variable.is-4-desktop-only, .is-variable.is-4-desktop-only.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1920px) {
  .columns.is-variable.is-4-widescreen, .is-variable.is-4-widescreen.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .columns.is-variable.is-4-widescreen-only, .is-variable.is-4-widescreen-only.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-4-fullhd, .is-variable.is-4-fullhd.o-cols {
    --columnGap: 1rem;
  }
}
.columns.is-variable.is-5, .is-variable.is-5.o-cols {
  --columnGap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-5-mobile, .is-variable.is-5-mobile.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-5-tablet, .is-variable.is-5-tablet.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-5-tablet-only, .is-variable.is-5-tablet-only.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-5-touch, .is-variable.is-5-touch.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-5-desktop, .is-variable.is-5-desktop.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .columns.is-variable.is-5-desktop-only, .is-variable.is-5-desktop-only.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .columns.is-variable.is-5-widescreen, .is-variable.is-5-widescreen.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .columns.is-variable.is-5-widescreen-only, .is-variable.is-5-widescreen-only.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-5-fullhd, .is-variable.is-5-fullhd.o-cols {
    --columnGap: 1.25rem;
  }
}
.columns.is-variable.is-6, .is-variable.is-6.o-cols {
  --columnGap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-6-mobile, .is-variable.is-6-mobile.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-6-tablet, .is-variable.is-6-tablet.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-6-tablet-only, .is-variable.is-6-tablet-only.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-6-touch, .is-variable.is-6-touch.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-6-desktop, .is-variable.is-6-desktop.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .columns.is-variable.is-6-desktop-only, .is-variable.is-6-desktop-only.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .columns.is-variable.is-6-widescreen, .is-variable.is-6-widescreen.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .columns.is-variable.is-6-widescreen-only, .is-variable.is-6-widescreen-only.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-6-fullhd, .is-variable.is-6-fullhd.o-cols {
    --columnGap: 1.5rem;
  }
}
.columns.is-variable.is-7, .is-variable.is-7.o-cols {
  --columnGap: 1.75rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-7-mobile, .is-variable.is-7-mobile.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-7-tablet, .is-variable.is-7-tablet.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-7-tablet-only, .is-variable.is-7-tablet-only.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-7-touch, .is-variable.is-7-touch.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-7-desktop, .is-variable.is-7-desktop.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .columns.is-variable.is-7-desktop-only, .is-variable.is-7-desktop-only.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1920px) {
  .columns.is-variable.is-7-widescreen, .is-variable.is-7-widescreen.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .columns.is-variable.is-7-widescreen-only, .is-variable.is-7-widescreen-only.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-7-fullhd, .is-variable.is-7-fullhd.o-cols {
    --columnGap: 1.75rem;
  }
}
.columns.is-variable.is-8, .is-variable.is-8.o-cols {
  --columnGap: 2rem;
}
@media screen and (max-width: 768px) {
  .columns.is-variable.is-8-mobile, .is-variable.is-8-mobile.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px), print {
  .columns.is-variable.is-8-tablet, .is-variable.is-8-tablet.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .columns.is-variable.is-8-tablet-only, .is-variable.is-8-tablet-only.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .columns.is-variable.is-8-touch, .is-variable.is-8-touch.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .columns.is-variable.is-8-desktop, .is-variable.is-8-desktop.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1919px) {
  .columns.is-variable.is-8-desktop-only, .is-variable.is-8-desktop-only.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1920px) {
  .columns.is-variable.is-8-widescreen, .is-variable.is-8-widescreen.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1920px) and (max-width: 1407px) {
  .columns.is-variable.is-8-widescreen-only, .is-variable.is-8-widescreen-only.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1408px) {
  .columns.is-variable.is-8-fullhd, .is-variable.is-8-fullhd.o-cols {
    --columnGap: 2rem;
  }
}

.container {
  flex-grow: 1;
  margin: 0 auto;
  position: relative;
  width: auto;
}
.container.is-fluid {
  max-width: none !important;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 1919px) {
  .container.is-widescreen:not(.is-max-desktop) {
    max-width: 1344px;
  }
}
@media screen and (max-width: 1407px) {
  .container.is-fullhd:not(.is-max-desktop):not(.is-max-widescreen) {
    max-width: 1344px;
  }
}
@media screen and (min-width: 1920px) {
  .container:not(.is-max-desktop) {
    max-width: 1344px;
  }
}
@media screen and (min-width: 1408px) {
  .container:not(.is-max-desktop):not(.is-max-widescreen) {
    max-width: 1344px;
  }
}

/* ==========================================================================
   MIXINS
   ========================================================================== */
/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ==========================================================================
   #FONT-FACE
   ========================================================================== */
/**
 * Add font-display: swap to font-face blocks here
 * https://www.zachleat.com/web/comprehensive-webfonts/#font-display
 */
@font-face {
  font-family: "Soehne";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/soehne/soehne-buch.woff2") format("woff2");
}
/* roboto-condensed-regular - latin */
@font-face {
  font-family: "Soehne Breit";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/soehne-breit/soehne-breit-buch.woff2") format("woff2");
}
/* ==========================================================================
   #NORMALIZE
   ========================================================================== */
@import-normalize;
/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0; /* [1] */
  border: 0;
}

/* ==========================================================================
   #SHARED
   ========================================================================== */
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
address,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
ol,
ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 1.3rem;
}

/**
 * Consistent indentation for lists.
 */
dd,
ol,
ul {
  margin-left: 1rem;
}

/* ==========================================================================
   #BLOCKQUOTES
   ========================================================================== */
blockquote {
  quotes: "“" "”" "‘" "’";
  font-style: italic;
}
blockquote p:first-child::before {
  content: open-quote;
}
blockquote p:last-child::after {
  content: close-quote;
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
h1 {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.33rem;
  line-height: 1.53rem;
}
@media screen and (min-width: 1440px) {
  h1 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  h1 {
    line-height: 1.8rem;
  }
}

h2 {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 0.933rem;
}
@media screen and (min-width: 1440px) {
  h2 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  h2 {
    line-height: 1.13rem;
  }
}

h3 {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.13rem;
}
@media screen and (min-width: 1440px) {
  h3 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  h3 {
    line-height: 1.13rem;
  }
}

h4 {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.66rem;
  line-height: auto;
}
@media screen and (min-width: 1440px) {
  h4 {
    font-size: 0.66rem;
  }
}
@media screen and (min-width: 1440px) {
  h4 {
    line-height: auto;
  }
}

p {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media screen and (min-width: 1440px) {
  p {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  p {
    line-height: 2.8rem;
  }
}
@media (min-width: 1920px) {
  p {
    line-height: 2.8rem;
  }
}

/* ==========================================================================
   #HR
   ========================================================================== */
hr {
  display: block;
}

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  background: #fff;
  color: #000;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-size: 0.9375rem; /* [1] */
  line-height: 1.5; /* [1] */
  min-height: 100%; /* [3] */
  overflow-y: scroll; /* [2] */
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ==========================================================================
   #IMAGES
   ========================================================================== */
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  font-style: italic; /* [2] */
  max-width: 100%; /* [1] */
  vertical-align: middle; /* [3] */
}

/**
 * 1. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */
img[width],
img[height] {
  max-width: none;
}

/* ==========================================================================
   #LINKS
   ========================================================================== */
a {
  color: #666;
  text-decoration: underline;
}
a:hover {
  color: #999;
}

/* ==========================================================================
   #LISTS
   ========================================================================== */
li {
  margin-bottom: 0.5rem;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

p::selection {
  background-color: var(--dynamic-link-color);
  color: #fff;
}

::selection {
  background-color: transparent;
}

/* ==========================================================================
   #TABLES
   ========================================================================== */
/**
 * 1. Ensure tables fill up as much space as possible.
 */
table {
  width: 100%; /* [1] */
}

/* ==========================================================================
   # Video
   ========================================================================== */
.elementor-widget-video {
  position: relative;
}
.elementor-widget-video .elementor-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  padding-bottom: var(--widget-video-aspect) !important;
}
.elementor-widget-video .elementor-fit-aspect-ratio iframe,
.elementor-widget-video .elementor-fit-aspect-ratio video,
.elementor-widget-video iframe,
.elementor-widget-video video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* ==========================================================================
   # 3d embedder
   ========================================================================== */
.elementor-widget-3d_embedder #model model-viewer {
  background: transparent;
}

.c-projects__filter .wpgb-facet .wpgb-clear-button,
.c-projects__filter .wpgb-facet .wpgb-facet-title {
  display: none;
}

.c-projects__filter .wpgb-facet > fieldset, .c-projects__filter .wpgb-facet > fieldset:last-child {
  margin-bottom: 0;
}

.c-projects__filter .wpgb-facet .wpgb-hierarchical-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li {
  margin: 12px 0 10px;
}

.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li {
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li, .c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li:first-child,
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list li,
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list li:first-child {
    margin-top: 0;
    margin-bottom: 10px;
    margin-right: 6.875rem;
  }
}
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li .wpgb-checkbox-label,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li .wpgb-radio-label,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li .wpgb-checkbox-label,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li .wpgb-radio-label {
  padding: 0;
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.33rem;
  line-height: 1.53rem;
  text-transform: none;
  font-family: "Soehne", helvetica, arial, sans-serif;
  display: flex;
  align-items: center;
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 1440px) {
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li .wpgb-checkbox-label,
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li .wpgb-radio-label,
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list li .wpgb-checkbox-label,
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list li .wpgb-radio-label {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li .wpgb-checkbox-label,
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li .wpgb-radio-label,
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list li .wpgb-checkbox-label,
  .c-projects__filter .wpgb-facet .wpgb-hierarchical-list li .wpgb-radio-label {
    line-height: 1.8rem;
  }
}
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li [aria-pressed=true] .wpgb-checkbox-label,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li [aria-pressed=true] .wpgb-radio-label, .c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li:hover .wpgb-checkbox-label,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li:hover .wpgb-radio-label,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li [aria-pressed=true] .wpgb-checkbox-label,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li [aria-pressed=true] .wpgb-radio-label,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li:hover .wpgb-checkbox-label,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li:hover .wpgb-radio-label {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
}
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li [aria-pressed=true] .wpgb-checkbox-badge,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li [aria-pressed=true] .wpgb-radio-badge,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li [aria-pressed=true] .wpgb-checkbox-badge,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li [aria-pressed=true] .wpgb-radio-badge {
  background: #69e876;
  color: #000;
}
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li .wpgb-checkbox-control,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list:first-child > li .wpgb-radio-control,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li .wpgb-checkbox-control,
.c-projects__filter .wpgb-facet .wpgb-hierarchical-list li .wpgb-radio-control {
  display: none;
}

.wpgb-checkbox-badge,
.wpgb-radio-badge {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 10px;
  line-height: 1;
  transition: all 300ms ease-in-out;
}

.c-projects__filter .wpgb-facet .wpgb-search-facet .wpgb-input-icon,
.c-projects__filter .wpgb-facet .wpgb-autocomplete-facet .wpgb-input-icon {
  display: none;
}
.c-projects__filter .wpgb-facet .wpgb-search-facet input[type=search],
.c-projects__filter .wpgb-facet .wpgb-autocomplete-facet input[type=search] {
  padding: 0;
  border: none;
  width: 100%;
  height: auto;
  min-height: 0;
  font-size: 15px;
  line-height: 15px;
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  color: #69e876;
}
@media screen and (min-width: 1440px) {
  .c-projects__filter .wpgb-facet .wpgb-search-facet input[type=search],
  .c-projects__filter .wpgb-facet .wpgb-autocomplete-facet input[type=search] {
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .c-projects__filter .wpgb-facet .wpgb-search-facet input[type=search],
  .c-projects__filter .wpgb-facet .wpgb-autocomplete-facet input[type=search] {
    line-height: 24px;
  }
}
.c-projects__filter .wpgb-facet .wpgb-search-facet input[type=search]:-ms-input-placeholder, .c-projects__filter .wpgb-facet .wpgb-autocomplete-facet input[type=search]:-ms-input-placeholder {
  font-family: "Soehne", helvetica, arial, sans-serif;
  color: #69e876;
}
.c-projects__filter .wpgb-facet .wpgb-search-facet input[type=search]::placeholder,
.c-projects__filter .wpgb-facet .wpgb-autocomplete-facet input[type=search]::placeholder {
  font-family: "Soehne", helvetica, arial, sans-serif;
  color: #69e876;
}

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/* Simple flexbox layout system */
/* ==========================================================================
   #LIST-BARE
   ========================================================================== */
/**
 * Strip list-like appearance from lists by removing their bullets, and any
 * indentation.
 */
.o-list-bare {
  list-style: none;
  margin-left: 0;
}

/* ==========================================================================
   #LIST-INLINE
   ========================================================================== */
/**
 * The list-inline object simply displays a list of items in one line.
 */
.o-list-inline {
  list-style: none;
  margin-left: 0;
}

.o-list-inline__item {
  display: inline-block;
}

/* ==========================================================================
   #MEDIA
   ========================================================================== */
/**
 * Place any image- and text-like content side-by-side, as per:
 * http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 */
.o-media {
  display: block;
}
.o-media::after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

.o-media__img {
  float: left;
  margin-right: 1rem;
}
.o-media__img > img {
  display: block;
}

.o-media__body {
  display: block;
  overflow: hidden;
}
.o-media__body,
.o-media__body > :last-child {
  margin-bottom: 0;
}

/* Reversed media objects
   ========================================================================== */
.o-media--reverse > .o-media__img {
  float: right;
  margin-left: 1rem;
  margin-right: 0;
}

/* Gutterless media objects
   ========================================================================== */
.o-media--flush > .o-media__img {
  margin-left: 0;
  margin-right: 0;
}

/* ==========================================================================
   #TABLE
   ========================================================================== */
/**
 * A simple object for manipulating the structure of HTML `table`s.
 */
.o-table {
  width: 100%;
}

/* Equal-width table cells.
   ========================================================================== */
/**
 * `table-layout: fixed` forces all cells within a table to occupy the same
 * width as each other. This also has performance benefits: because the browser
 * does not need to (re)calculate cell dimensions based on content it discovers,
 * the table can be rendered very quickly. Further reading:
 * https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
 */
.o-table--fixed {
  table-layout: fixed;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 */
.o-wrapper {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
.o-wrapper::after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 100% !important;
}

.c-anchor-menu {
  justify-content: space-between;
  top: 50px;
  padding: 12px 0;
  z-index: 95;
  margin: 0;
  display: none;
  background: var(--anchor-menu-bg, #ffffff);
}
@media (min-width: 1024px) {
  .c-anchor-menu {
    padding: 10px 20px;
    display: flex;
  }
}

.c-anchor-menu__dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--anchor-menu-indicator, #69e876);
  list-style: none;
  margin: 0;
  transition: left 0.4s cubic-bezier(0.7, 0.6, 0.1, 0.8), width 0.6s ease, height 0.2s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}
.c-anchor-menu__dot.is-active {
  height: 32px;
  border-radius: 20px;
}

.c-anchor-menu__list-item {
  list-style: none;
  display: inline-flex;
  margin: 0;
  position: relative;
  z-index: 2;
}

.c-anchor-menu__item {
  display: flex;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--anchor-menu-fg, #000000);
}
@media screen and (min-width: 1440px) {
  .c-anchor-menu__item {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-anchor-menu__item {
    line-height: 2.8rem;
  }
}
.c-anchor-menu__item:active, .c-anchor-menu__item:focus, .c-anchor-menu__item:hover {
  color: var(--anchor-menu-fg, #000000);
}
@media (min-width: 774px) {
  .c-anchor-menu__item {
    min-width: 16%;
  }
}
@media (min-width: 1024px) {
  .c-anchor-menu__item {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .c-anchor-menu__item {
    min-width: unset;
  }
}

.c-award-list p {
  margin-bottom: 40px;
}

@media (min-width: 1920px) {
  .c-award-list--col-two {
    columns: 2 150px;
    column-gap: 2em;
  }
}

.c-award-list__item {
  page-break-inside: avoid;
  break-inside: avoid-column;
}

.c-award-list__year {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  margin-right: 20px;
  margin-bottom: 0;
}
@media screen and (min-width: 1440px) {
  .c-award-list__year {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-award-list__year {
    line-height: 2.8rem;
  }
}
@media (min-width: 774px) {
  .c-award-list__year {
    margin-right: 130px;
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .c-award-list__year {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1920px) {
  .c-award-list__year {
    margin-right: 120px;
    display: inline;
    font-size: 38.4px;
    line-height: 45px;
  }
}

.c-award-list__award {
  display: block;
}

.c-award-list__award--row {
  display: flex;
  flex-direction: row;
}

.c-award-list__place {
  display: inline-block;
  line-height: 0;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 1px solid #000000;
  background-color: #000000;
  font-size: 10px;
  margin: 0.55rem 0 auto;
}
.c-award-list__place span {
  display: inline-block;
  color: #ffffff;
  padding-top: 50%;
  padding-bottom: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 774px) {
  .c-award-list__place {
    height: 18px;
    width: 18px;
    font-size: 12px;
    margin: 0.4rem 0 auto;
  }
}
@media (min-width: 1024px) {
  .c-award-list__place {
    height: 25px;
    width: 25px;
    font-size: 15px;
    margin: 0.2rem 0 auto;
  }
}
@media (min-width: 1920px) {
  .c-award-list__place {
    height: 35px;
    width: 35px;
    font-size: 20px;
    margin: 0.2rem 0 auto;
  }
}

.c-award-list__entry {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  text-transform: none;
  width: 80%;
  margin: auto 0 auto 7px;
}
@media screen and (min-width: 1440px) {
  .c-award-list__entry {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-award-list__entry {
    line-height: 2.8rem;
  }
}
@media (min-width: 774px) {
  .c-award-list__entry {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .c-award-list__entry {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1920px) {
  .c-award-list__entry {
    display: inline;
    font-size: 38.4px;
    line-height: 45px;
  }
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
.c-btn {
  display: inline-block; /* [1] */
  vertical-align: middle; /* [2] */
  font: inherit; /* [3] */
  text-align: center; /* [4] */
  margin: 0; /* [4] */
  cursor: pointer; /* [5] */
  padding: 0.5rem 1rem 0.25rem;
  transition: all 300ms ease-in-out;
  border-radius: 3px;
}

/* Style variants
   ========================================================================== */
.c-btn--primary {
  background-color: #666;
}
.c-btn--primary, .c-btn--primary:hover, .c-btn--primary:active, .c-btn--primary:focus {
  text-decoration: none; /* [4] */
  color: #fff;
}
.c-btn--primary:hover, .c-btn--primary:focus {
  background-color: #999;
}

/* Size variants
   ========================================================================== */
.c-btn--small {
  padding: 0.25rem 0.5rem;
}

.c-btn--large {
  padding: 0.75rem 1.5rem;
}

@media (min-width: 1920px) {
  .c-client-list--col-two {
    columns: 2 150px;
    column-gap: 2em;
  }
}

.c-client-list__item {
  page-break-inside: avoid;
  break-inside: avoid-column;
}

.c-client-list__letter {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  margin-right: 42px;
}
@media screen and (min-width: 1440px) {
  .c-client-list__letter {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-client-list__letter {
    line-height: 2.8rem;
  }
}
@media (min-width: 774px) {
  .c-client-list__letter {
    margin-right: 130px;
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .c-client-list__letter {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1920px) {
  .c-client-list__letter {
    margin-bottom: 40px;
    display: inline;
    font-size: 38.4px;
    line-height: 45px;
  }
}

.c-client-list__entry {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  display: block;
  text-transform: none;
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .c-client-list__entry {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-client-list__entry {
    line-height: 2.8rem;
  }
}
@media (min-width: 774px) {
  .c-client-list__entry {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .c-client-list__entry {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 1920px) {
  .c-client-list__entry {
    font-size: 38.4px;
    line-height: 45px;
  }
}

/* ==========================================================================
   #COMMENT FORM
   Here we are using default HTML structure and classes,
   to create custom ones use comment_form_defaults filter
   ========================================================================== */
.c-comment-form {
  margin-top: 2em;
}
.c-comment-form label {
  display: block;
}
.c-comment-form textarea {
  max-width: 100%;
}

.comment-reply-title {
  margin-bottom: 0.25em;
}

/* ==========================================================================
   #COMMENT
   ========================================================================== */
.c-comment {
  margin-bottom: 1em;
}

.c-comment__author {
  font-size: 1rem;
  margin-bottom: 0.25em;
}

.c-comment__moderation {
  font-style: italic;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 1145px) {
  .rcb-inner {
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .rcb-tb-right {
    max-width: 100% !important;
    width: 100% !important;
  }
}
.c-credits {
  display: flex;
  flex-wrap: wrap;
}

.c-credits__item {
  display: flex;
  flex-direction: column;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  width: 100%;
  color: #000000;
  padding: 10px 0;
}
@media screen and (min-width: 1440px) {
  .c-credits__item {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-credits__item {
    line-height: auto;
  }
}
@media (min-width: 774px) {
  .c-credits__item {
    width: 50%;
    padding: 10px 0;
    margin-bottom: 15px;
  }
}
@media (min-width: 1920px) {
  .c-credits__item {
    width: 25%;
    margin-bottom: 20px;
  }
}

.c-credits__title {
  width: 100%;
  font-size: 10px;
  margin-bottom: 5px;
}
@media (min-width: 774px) {
  .c-credits__title {
    font-size: 15px;
    line-height: 17px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1920px) {
  .c-credits__title {
    font-family: "Soehne Breit", helvetica, arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.33rem;
    line-height: 1.53rem;
  }
}
@media screen and (min-width: 1920px) and (min-width: 1440px) {
  .c-credits__title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1920px) and (min-width: 1440px) {
  .c-credits__title {
    line-height: 1.8rem;
  }
}

.c-credits__client {
  margin-bottom: auto;
  font-size: 15px;
  line-height: 17px;
}
@media (min-width: 774px) {
  .c-credits__client {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  .c-credits__client {
    font-size: 38.4px;
    line-height: 1em;
  }
}

.c-credits__client--link.c-link {
  color: #000000 !important;
}
.c-credits__client--link.c-link:hover {
  color: var(--font-color) !important;
}

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.c-footer {
  border-top: 1px solid #ccc;
  font-size: 0.875rem;
  padding: 20px 10px;
  background-color: #000000;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 774px) {
  .c-footer {
    padding: 20px 20px;
  }
}
@media (min-width: 1024px) {
  .c-footer {
    padding: 20px 10px;
  }
}
@media (min-width: 1920px) {
  .c-footer {
    padding: 30px 20px;
  }
}

.c-footer__nav-item {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  margin: auto 0;
  min-height: 30px;
  line-height: 1;
}
@media screen and (min-width: 1440px) {
  .c-footer__nav-item {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-footer__nav-item {
    line-height: auto;
  }
}
@media (min-width: 1024px) {
  .c-footer__nav-item {
    font-size: 24px;
  }
  .c-footer-legal .c-footer__nav-item {
    font-size: 1rem;
  }
}
.c-footer__nav-item:hover {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 0.933rem;
  color: #ffffff;
  font-size: 15px;
}
@media screen and (min-width: 1440px) {
  .c-footer__nav-item:hover {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-footer__nav-item:hover {
    line-height: 1.13rem;
  }
}
@media (min-width: 1024px) {
  .c-footer__nav-item:hover {
    font-size: 22px;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .c-footer__nav {
    display: flex;
    flex-wrap: wrap;
  }
}

.c-footer__col {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.c-footer__col .c-footer__nav-item {
  display: block;
}
.c-footer__col:last-of-type {
  margin-bottom: 0;
  width: 100%;
}
@media (min-width: 774px) {
  .c-footer__col {
    margin-bottom: 40px;
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .c-footer__col:last-of-type {
    width: 80%;
  }
}
@media (min-width: 1024px) {
  .c-footer__col {
    display: inline;
  }
  .c-footer__col .c-footer__nav-item {
    width: 50%;
  }
  .c-footer__col:last-of-type {
    width: 60%;
  }
}
@media (min-width: 1400px) {
  .c-footer__col {
    display: inline;
  }
  .c-footer__col:last-of-type {
    width: 40%;
  }
}
@media (min-width: 1920px) {
  .c-footer__col {
    width: 40%;
    margin: 0;
  }
  .c-footer__col:last-of-type {
    margin: auto 0 0;
    width: 20%;
  }
}

.c-footer__row {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.c-footer-legal .c-footer__row {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}
.c-footer__row .c-footer__nav-item {
  font-size: 10px;
  width: 33%;
  text-align: right;
}
.c-footer__row .c-footer__nav-item:first-child {
  text-align: left;
}
@media (min-width: 774px) {
  .c-footer__row {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .c-footer__row {
    width: 100%;
  }
  .c-footer__row .c-footer__nav-item {
    width: 30%;
    /*&:nth-child(2) {
      text-align: left;
    }*/
  }
}
@media (min-width: 1400px) {
  .c-footer__row {
    width: 100%;
  }
  .c-footer__row .c-footer__nav-item {
    width: 15%;
  }
}
@media (min-width: 1920px) {
  .c-footer__row {
    width: 100%;
  }
  .c-footer__row .c-footer__nav-item {
    width: 22%;
  }
  .c-footer__row .c-footer__nav-item:first-of-type {
    width: 160px;
  }
  .c-footer__row .c-footer__nav-item:nth-child(2) {
    text-align: right;
  }
}

.c-footer__nav-item.c-footer__language {
  display: block;
}
.c-footer__nav-item.c-footer__language--active {
  display: none;
}

.c-page-home__footer .c-footer {
  border: none;
}
@media (min-width: 1400px) {
  .c-page-home__footer .c-footer {
    display: block;
  }
}
@media (min-width: 1400px) {
  .c-page-home__footer .c-footer__col__home {
    display: block;
    width: unset;
    margin-bottom: 40px;
  }
  .c-page-home__footer .c-footer__col__home:last-of-type {
    margin-bottom: 20px;
  }
  .c-page-home__footer .c-footer__col__home .c-footer__nav {
    display: block;
  }
  .c-page-home__footer .c-footer__col__home .c-footer__nav-item {
    width: 100%;
  }
}
.c-page-home__footer .c-footer__col__home-footer .c-footer__nav-item {
  width: 35%;
  line-height: 1;
}
@media (min-width: 1400px) {
  .c-page-home__footer .c-footer__col__home-footer .c-footer__nav-item {
    width: 50%;
  }
}
@media (min-width: 1920px) {
  .c-page-home__footer .c-footer__col__home-footer .c-footer__nav-item {
    width: 35%;
  }
}
@media (min-width: 1400px) {
  .c-page-home__footer .c-footer__col__home-footer .c-footer__nav-item {
    font-size: 15px;
  }
}

/* ==========================================================================
   #HEADER
   ========================================================================== */
.c-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.c-header .c-mobile-header__menu {
  display: none;
}
.c-header .c-mobile-header__menu a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
}
.c-header.is-active .c-mobile-header__menu {
  display: flex;
}

.c-header__menu {
  display: none;
}
@media (min-width: 1024px) {
  .c-header__menu {
    padding: 10px 20px;
    border-bottom: 1px solid #000000;
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
  }
}
.c-header__menu a {
  text-decoration: none;
  color: #000000;
}

.c-header__row {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.c-header__row .c-header__nav-item {
  text-align: center;
}
.c-header__row .c-header__nav-item:first-child {
  text-align: left;
}
.c-header__row .c-header__nav-item:last-child {
  text-align: right;
}

.c-header__nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.c-header__nav-item {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  font-size: 24px !important;
  color: #000000;
  position: relative;
  min-width: 190px;
}
@media screen and (min-width: 1440px) {
  .c-header__nav-item {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-header__nav-item {
    line-height: auto;
  }
}
.c-header__nav-item:hover, .c-header__nav-item.current-menu-item {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 0.933rem;
  font-size: 24px !important;
  margin: auto 0;
}
@media screen and (min-width: 1440px) {
  .c-header__nav-item:hover, .c-header__nav-item.current-menu-item {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-header__nav-item:hover, .c-header__nav-item.current-menu-item {
    line-height: 1.13rem;
  }
}
.c-header__nav-item.current-menu-item:nth-child(even) {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}

.c-header__nav-item.current-menu-item:nth-child(even) .c-header__nav-item-icon {
  display: inline-block;
  order: -1;
  margin-right: 7px;
  position: relative;
}

.c-header__nav-item-icon {
  position: absolute;
  margin-left: 7px;
  display: none;
  width: 15px;
  height: 15px;
}
@media (min-width: 774px) {
  .c-header__nav-item-icon {
    width: 35px;
    left: auto;
    height: 35px;
  }
}
@media (min-width: 1024px) {
  .c-header__nav-item-icon {
    width: 15px;
    height: 15px;
  }
}
.current-menu-item .c-header__nav-item-icon {
  display: revert;
}

.c-mobile-header__menu--closed {
  z-index: 5;
}
.c-mobile-header__menu--closed__item {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
}
@media screen and (min-width: 1440px) {
  .c-mobile-header__menu--closed__item {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-mobile-header__menu--closed__item {
    line-height: auto;
  }
}
.c-mobile-header__menu--closed a {
  text-decoration: none;
  color: #000000;
}

.c-mobile-header__menu__menu {
  text-align: right;
  cursor: pointer;
}

.c-mobile-header__menu {
  border-top: 1px solid #ccc;
  padding: 55px 66px 20px;
  background-color: #000000;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 5;
  top: 0;
  position: absolute;
}
@media (min-width: 774px) {
  .c-mobile-header__menu {
    padding: 95px 136px 50px;
  }
}
@media (min-width: 1024px) {
  .c-mobile-header__menu {
    display: none;
  }
}

.c-mobile-header__menu__toggle {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 35px;
  cursor: pointer;
}
@media screen and (min-width: 1440px) {
  .c-mobile-header__menu__toggle {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-mobile-header__menu__toggle {
    line-height: auto;
  }
}
@media (min-width: 774px) {
  .c-mobile-header__menu__toggle {
    font-size: 40px;
    margin-bottom: 66px;
  }
}
@media (min-width: 1024px) {
  .c-mobile-header__menu__toggle {
    display: none;
  }
}

.c-mobile-header__nav-item {
  display: block;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 35px;
  font-size: 38px;
}
@media screen and (min-width: 1440px) {
  .c-mobile-header__nav-item {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-mobile-header__nav-item {
    line-height: auto;
  }
}
@media (min-width: 774px) {
  .c-mobile-header__nav-item {
    font-size: 60px;
    margin-bottom: 65px;
  }
}
@media (min-width: 1024px) {
  .c-mobile-header__nav-item {
    font-size: 24px;
  }
}
.c-mobile-header__nav-item--active {
  position: absolute;
  margin-top: 20px;
  left: 30px;
  width: 15px;
  height: 15px;
}
@media (min-width: 774px) {
  .c-mobile-header__nav-item--active {
    margin-top: 45px;
    left: 60px;
    width: 35px;
    height: 35px;
  }
}
.c-mobile-header__nav-item.current-menu-item {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
}
.c-mobile-header__nav-item .c-header__nav-item-icon {
  margin-left: -35px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 774px) {
  .c-mobile-header__nav-item .c-header__nav-item-icon {
    margin-left: -75px;
  }
}

.c-mobile-header__nav {
  display: block;
}
@media (min-width: 1024px) {
  .c-mobile-header__nav {
    display: flex;
    flex-wrap: wrap;
  }
}

.c-mobile-header__col {
  width: 100%;
}
@media (min-width: 1024px) {
  .c-mobile-header__col {
    display: inline;
  }
  .c-mobile-header__col .c-mobile-header__nav-item {
    width: 50%;
  }
}
@media (min-width: 1920px) {
  .c-mobile-header__col {
    width: 42%;
    margin: 0;
  }
  .c-mobile-header__col:last-of-type {
    margin: auto 0 0;
    width: 14%;
  }
}

.c-mobile-header__menu--closed {
  background-color: #ffffff;
  height: 45px;
  border-bottom: 1px solid #000000;
  display: flex;
  flex-wrap: wrap;
  padding: 12px 10px;
}
.c-mobile-header__menu--closed__item {
  width: 50%;
}
@media (min-width: 1024px) {
  .c-mobile-header__menu--closed {
    display: none;
  }
}

.c-mobile-header__social {
  width: 100%;
  margin-top: auto;
}
.c-mobile-header__social .c-mobile-header__nav {
  display: flex;
}
.c-mobile-header__social .c-mobile-header__nav-item {
  font-size: 12px;
  width: 50%;
  margin: 0;
}
@media (min-width: 774px) {
  .c-mobile-header__social .c-mobile-header__nav-item {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .c-mobile-header__social {
    display: none;
  }
}

/* ==========================================================================
   IMAGE
   ========================================================================== */
.c-img {
  position: relative;
}
.c-img::before {
  content: "";
  position: relative;
  display: block;
  padding-bottom: var(--image-aspect--mobile);
}
@media (min-width: 1024px) {
  .c-img::before {
    padding-bottom: var(--image-aspect);
  }
}

.c-img__wrap {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-img--loaded .c-img__wrap {
  background: transparent;
}

.c-img__full,
img.c-img__full,
.c-img__placeholder,
img.c-img__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: pixelated;
}
.c-img--inline .c-img__full,
.c-img--inline img.c-img__full,
.c-img--inline .c-img__placeholder,
.c-img--inline img.c-img__placeholder {
  object-fit: cover;
  object-position: var(--image-focuspoint);
}
.c-img-- .c-img__full,
.c-img-- img.c-img__full,
.c-img-- .c-img__placeholder,
.c-img-- img.c-img__placeholder {
  height: 100%;
  width: 100%;
}
.c-img--bg .c-img__full,
.c-img--bg img.c-img__full,
.c-img--bg .c-img__placeholder,
.c-img--bg img.c-img__placeholder {
  background: transparent no-repeat var(--image-focuspoint)/cover;
}
.c-img--loaded .c-img__full, .c-img__full[data-loaded=true],
.c-img--loaded img.c-img__full,
img.c-img__full[data-loaded=true],
.c-img--loaded .c-img__placeholder,
.c-img__placeholder[data-loaded=true],
.c-img--loaded img.c-img__placeholder,
img.c-img__placeholder[data-loaded=true] {
  animation: pixelateFull 2s ease 0s 1 normal forwards;
}

.c-img__placeholder {
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: pixelated;
  background-size: cover;
  object-fit: cover;
}
.c-img--loaded .c-img__placeholder, [data-loaded=true] + .c-img__placeholder {
  image-rendering: auto;
  opacity: 0;
  animation: pixelate 1s ease 0s 1 normal forwards;
}

[data-widget_type="image.default"] img.u-lazy,
[data-widget_type="image.default"] img.u-elementor-lazy,
img[data-lazy-src] {
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: pixelated;
}

[data-widget_type="image.default"] img.u-lazy[data-loaded=true],
[data-widget_type="image.default"] img.u-elementor-lazy[data-loaded=true],
img.lazyloaded {
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: pixelated;
  animation: pixelateFull 2s ease 0s 1 normal forwards;
}

@keyframes pixelate {
  0% {
    opacity: 1;
    -ms-interpolation-mode: nearest-neighbor;
        image-rendering: pixelated;
  }
  99% {
    opacity: 1;
    -ms-interpolation-mode: nearest-neighbor;
        image-rendering: pixelated;
  }
  100% {
    opacity: 0;
    image-rendering: auto;
  }
}
@keyframes pixelateFull {
  0% {
    -ms-interpolation-mode: nearest-neighbor;
        image-rendering: pixelated;
  }
  99% {
    -ms-interpolation-mode: nearest-neighbor;
        image-rendering: pixelated;
  }
  100% {
    image-rendering: auto;
  }
}
.c-link {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  text-transform: uppercase;
  color: var(--dynamic-link-color) !important;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .c-link,
  .c-link .js-marquee-wrapper {
    width: auto !important;
  }
}
@media (min-width: 1024px) {
  .c-link {
    white-space: nowrap;
  }
}

.c-link__inner {
  display: inline-block;
}
@media (max-width: 1023.98px) {
  .c-link__inner {
    display: inline-flex;
    word-break: break-all;
  }
  .c-link__inner + .c-link__icon + .c-link__inner {
    display: none;
  }
}

.c-link__icon-wrap {
  margin: 0 8px;
}
@media (max-width: 1023.98px) {
  .c-link__icon-wrap.c-link__icon-wrap--desktop,
  .c-link__icon-wrap .c-link__icon-wrap--desktop {
    display: none;
  }
}

.c-link__icon {
  height: 0.8em;
  width: 0.95em;
}
@media (max-width: 1023.98px) {
  .c-link__icon {
    min-width: 0.95em;
    min-height: 0.8em;
  }
}
.c-link__icon.c-link__icon--mobile {
  margin: 0.3em auto auto;
  display: inline-flex;
}
.c-link__icon.c-link__icon--mobile:last-of-type {
  display: none;
}
@media (min-width: 1024px) {
  .c-link__icon.c-link__icon--mobile {
    display: none;
  }
}

.c-link .js-marquee {
  float: unset !important;
}

/* ==========================================================================
   #MAIN NAV
   ========================================================================== */
.c-main-nav {
  display: flex;
  margin: 0 0 2em 0;
}

.c-main-nav__item {
  font-weight: bold;
  list-style: none;
  margin: 0 1em 0 0;
  padding: 0;
}

.c-main-nav__link {
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 0.5em;
  text-decoration: none;
}

.current-menu-item .c-main-nav__link {
  border-bottom-color: #000;
}

.c-main-nav__dropdown {
  display: none;
  flex-direction: column;
  margin: 0;
  position: absolute;
}
.c-main-nav__item:hover .c-main-nav__dropdown {
  display: flex;
}

.c-main-nav__subitem {
  list-style: none;
  margin: 0;
}

.c-main-nav__sublink {
  background: #fff;
  border-bottom: 1px solid #ccc;
  display: block;
  padding: 0.5em;
  text-decoration: none;
}

.current-menu-item .c-main-nav__sublink {
  border-bottom-color: #000;
}

.c-marquee {
  overflow: hidden;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.c-marquee .js-marquee-wrapper {
  display: flex;
}

.c-marquee .js-marquee {
  float: none !important;
}

.c-marquee__desc {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.33rem;
  line-height: 1.53rem;
  font-family: "Soehne", helvetica, arial, sans-serif;
  display: inline-block;
  margin: 0;
}
@media screen and (min-width: 1440px) {
  .c-marquee__desc {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-marquee__desc {
    line-height: 1.8rem;
  }
}
.c-marquee__desc:before {
  content: " • ";
  display: inline-block;
  margin: 0 0.375rem 0;
  color: inherit;
}
.c-marquee__desc.c-marquee__desc--first:before, .c-marquee__desc:first-child:before {
  content: none;
}
.c-marquee__desc + .c-marquee__desc--first:before {
  content: " • ";
}
.c-marquee__desc:nth-child(even) {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.33rem;
  line-height: 1.53rem;
}
@media screen and (min-width: 1440px) {
  .c-marquee__desc:nth-child(even) {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-marquee__desc:nth-child(even) {
    line-height: 1.8rem;
  }
}
.c-marquee__desc:nth-child(even):before {
  content: " • ";
  display: inline-block;
  margin: 0 0.375rem 0;
  color: inherit;
}
.c-marquee__desc--project {
  margin: 0;
}

.c-video-projects .c-marquee {
  padding: 0;
}
.c-video-projects .c-marquee__desc {
  margin: 0;
  font-size: 15px;
}
.c-video-projects .c-marquee__desc:before {
  content: " • ";
  display: inline-block;
  margin: 0 0.375rem 0;
  color: rgb(0, 0, 0);
}
.c-video-projects .c-marquee__desc:first-child:before {
  content: none;
}
.c-video-projects .c-marquee__desc:nth-child(even):before {
  content: " • ";
  display: inline-block;
  margin: 0 0.375rem 0;
  color: rgb(0, 0, 0);
}

.c-my-type-tester {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: var(--my-type-tester-bg, #fff);
  color: var(--my-type-tester-fg, #000);
  padding: 1rem;
}
@media (min-width: 1024px) {
  .c-my-type-tester {
    padding: 2.625rem;
  }
}
.c-my-type-tester__single-line--line-height {
  --my-type-tester-line-height: 1 !important;
}

.c-my-type-tester__settings {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .c-my-type-tester__settings {
    justify-content: left;
  }
}

.c-my-type-tester__editable {
  color: var(--my-type-tester-fg, #000);
  line-height: var(--my-type-tester-line-height);
  letter-spacing: var(--my-type-tester-letter-spacing, unset);
  outline: none !important;
  overflow: hidden;
  padding-bottom: 0.5em;
  cursor: context-menu;
  column-count: var(--my-type-tester-columns, 1);
  column-gap: var(--my-type-tester-columns-spacing, 0);
  font-size: var(--my-type-tester-font-size);
  font-family: var(--my-type-tester-font-family);
  font-weight: var(--my-type-tester-font-weight);
  font-feature-settings: var(--my-type-tester-alternates);
}
.c-my-type-tester__editable * {
  color: var(--my-type-tester-fg, #000) !important;
  line-height: var(--my-type-tester-line-height);
  letter-spacing: var(--my-type-tester-letter-spacing, unset);
  margin-bottom: 0 !important;
  font-size: var(--my-type-tester-font-size);
  font-family: var(--my-type-tester-font-family) !important;
  font-weight: var(--my-type-tester-font-weight) !important;
  font-feature-settings: var(--my-type-tester-alternates) !important;
}
.c-my-type-tester__editable[contenteditable=true] {
  cursor: pointer;
}

.c-my-type-tester__editable--single-line,
.c-my-type-tester__editable--single-line * {
  white-space: nowrap !important;
}

.c-my-type-tester__editable--single-line--line-height {
  line-height: 1;
}

.c-my-type-tester__row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  color: var(--my-type-tester-fg, #000);
  margin-top: 2rem;
}
.c-my-type-tester__row + .c-my-type-tester__row {
  margin-top: calc(var(--my-type-tester-font-size) * 0.75);
}

.c-my-type-tester__col {
  width: 100%;
}
@media (min-width: 1024px) {
  .c-my-type-tester__col {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .c-my-type-tester--grid-80 .c-my-type-tester__col--label {
    width: 16.6666666667%;
  }
}
@media (min-width: 1024px) {
  .c-my-type-tester--grid-50 .c-my-type-tester__col--label {
    width: 50%;
  }
}
.c-my-type-tester--grid-100 .c-my-type-tester__col--label {
  display: none;
}

@media (min-width: 1024px) {
  .c-my-type-tester--grid-80 .c-my-type-tester__col--grid {
    width: 83.3333333333%;
  }
}
@media (min-width: 1024px) {
  .c-my-type-tester--grid-50 .c-my-type-tester__col--grid {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .c-my-type-tester--grid-100 .c-my-type-tester__col--grid {
    width: 100%;
  }
}

.c-my-type-tester__grid {
  display: flex;
  flex-wrap: wrap;
}

.c-my-type-tester__grid__item {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  z-index: var(--grid-item-index);
  min-width: var(--my-type-tester-glyph-item-width, 2.36em);
  border: 1px solid var(--my-type-tester-fg, #000);
  border-top-color: transparent;
  border-right-color: transparent;
}
.c-my-type-tester__grid__item:after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  padding-bottom: 113.2352941176%;
  z-index: 2;
  z-index: var(--grid-item-index);
}
.c-my-type-tester__grid__item:hover {
  z-index: 2;
  z-index: calc(var(--grid-item-index) * 10);
  border-bottom-color: transparent;
}
.c-my-type-tester__grid__item:hover .c-my-type-tester__grid__item-inner {
  transform: scale(2);
}
.c-my-type-tester__grid__item:hover[data-is-last-col=true] {
  border-left-color: transparent;
}
.c-my-type-tester__grid__item:hover[data-is-last-col=true][data-is-last-row=true] {
  border-left-color: var(--my-type-tester-fg, #000);
}
.c-my-type-tester__grid__item:hover[data-is-last-row=true] + [data-is-last-col=true]:before {
  position: absolute;
  right: -1.5px;
  bottom: -1px;
  width: calc(100% + 1px);
  height: calc(100% + 3px);
  content: "";
  border: 1px solid var(--my-type-tester-fg, #000);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
}
.c-my-type-tester__grid__item:hover[data-is-last-row=true][data-is-last-col=true]:before {
  position: absolute;
  right: calc(-100% - 3px);
  bottom: -1px;
  width: calc(200% + 2px);
  height: calc(100% + 3px);
  content: "";
  border: 1px solid var(--my-type-tester-fg, #000);
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
}
.c-my-type-tester__grid__item:hover[data-is-last-row=true][data-is-last-col=true][data-scale-setting=top-left] {
  border-left-color: transparent;
}
.c-my-type-tester__grid__item:hover[data-is-last-row=true][data-is-last-col=true][data-scale-setting=top-left]:before {
  right: -1.5px;
}
.c-my-type-tester__grid__item:hover[data-is-last-row=true], .c-my-type-tester__grid__item:hover[data-is-last-row=true] + .is-neighbor {
  border-bottom-color: var(--my-type-tester-fg, #000);
}
.c-my-type-tester__grid__item:hover[data-is-second-last-row=true][data-is-last-col=true]:before {
  position: absolute;
  left: calc(-100% - 3px);
  bottom: -1px;
  width: calc(200% + 2px);
  height: calc(100% + 2px);
  content: "";
  border: 1px solid var(--my-type-tester-fg, #000);
  border-top-color: transparent;
}
.c-my-type-tester__grid__item:hover[data-is-second-last-row=true][data-is-last-col=true][data-scale-setting=bottom-left]:not(.has-no-direct-bottom-neighbors):before {
  display: none;
}
.c-my-type-tester__grid__item:hover[data-item-row="1"][data-is-last-row=true] {
  z-index: 88;
}
.c-my-type-tester__grid__item:hover[data-item-row="1"][data-is-last-row=true] .c-my-type-tester__grid__item-inner {
  background-color: var(--my-type-tester-bg);
  top: -1.5px;
  width: calc(100% + 1px);
}
.c-my-type-tester__grid__item.has-no-direct-bottom-neighbors:before {
  border: 1px solid var(--my-type-tester-fg, #000);
  border-top-color: transparent;
  position: absolute;
  content: "";
  top: calc(100% + 1px);
  left: -1px;
  height: calc(100% + 2px);
  width: calc(200% + 4.5px);
}
.c-my-type-tester__grid__item.has-no-direct-bottom-neighbors[data-is-second-last-col=true]:before {
  border-right-color: transparent;
}
.c-my-type-tester__grid__item.has-no-direct-bottom-neighbors[data-is-last-col=true]:before {
  left: auto;
  right: -1px;
  border-right-color: transparent !important;
}
.c-my-type-tester__grid__item.has-no-bottom-neighbors:before {
  border: 1px solid var(--my-type-tester-fg, #000);
  border-top-color: transparent;
  border-left-color: transparent;
  position: absolute;
  content: "";
  top: calc(100% + 1px);
  left: calc(100% + 1px);
  height: calc(100% + 2px);
  width: calc(100% + 2px);
}
.c-my-type-tester__grid__item.is-neighbor {
  z-index: 1000;
  z-index: calc(var(--grid-item-index) * 12);
  z-index: 1000;
}
.c-my-type-tester__grid__item.is-neighbor .c-my-type-tester__grid__item-inner {
  opacity: 0;
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--right {
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--bottom {
  border-top-color: transparent;
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--right.is-neighbor--bottom {
  border-bottom-color: var(--my-type-tester-fg, #000);
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--left {
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.c-my-type-tester__grid__item.is-neighbor[data-is-last-col=true] {
  border-left-color: transparent;
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--left.is-neighbor--bottom {
  border-bottom-color: var(--my-type-tester-fg, #000);
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--top.is-neighbor--right {
  border-bottom-color: var(--my-type-tester-fg, #000);
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--bottom[data-is-last-row=true] {
  border-left-color: var(--my-type-tester-fg, #000);
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--bottom[data-is-last-row=true][data-is-last-col=true][data-master-scale-setting=bottom-left] {
  border-left-color: transparent;
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--bottom.is-neighbor--right[data-is-last-row=true] {
  border-left-color: transparent;
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--top[data-is-second-last-row=true], .c-my-type-tester__grid__item.is-neighbor.is-neighbor--right[data-is-second-last-row=true] {
  border-bottom-color: transparent;
}
.c-my-type-tester__grid__item.is-neighbor.is-neighbor--right.is-neighbor--bottom[data-is-second-last-row=true] {
  border-bottom-color: var(--my-type-tester-fg, #000);
}
.c-my-type-tester__grid__item[data-scale-setting=bottom-right]:hover .c-my-type-tester__grid__item-inner {
  transform-origin: top left;
}
.c-my-type-tester__grid__item[data-scale-setting=bottom-left]:hover .c-my-type-tester__grid__item-inner {
  transform-origin: top right;
}
.c-my-type-tester__grid__item[data-scale-setting=top-right]:hover .c-my-type-tester__grid__item-inner {
  transform-origin: bottom left;
}
.c-my-type-tester__grid__item[data-scale-setting=top-left]:hover .c-my-type-tester__grid__item-inner {
  transform-origin: bottom right;
}

.c-my-type-tester__grid__item--uppercase {
  text-transform: uppercase;
}

.c-my-type-tester__grid__item-inner {
  font-size: var(--my-type-tester-glyph-font-size, 1em);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--my-type-tester-fg, #000);
  font-family: var(--my-type-tester-font-family);
  font-weight: var(--my-type-tester-font-weight);
  font-feature-settings: var(--my-type-tester-alternates);
}

.c-my-type-tester__formgroup {
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .c-my-type-tester__formgroup {
    margin-right: 50px;
  }
}
@media (min-width: 1920px) {
  .c-my-type-tester__formgroup {
    margin-right: 180px;
  }
}

@media (max-width: 1023.98px) {
  .c-my-type-tester__formgroup--style {
    display: none;
  }
}

@media (max-width: 1023.98px) {
  .c-my-type-tester__formgroup--switch {
    display: none;
  }
}

.c-my-type-tester__formgroup--size {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1023.98px) {
  .c-my-type-tester__formgroup--size {
    display: none;
  }
}

.c-my-type-tester__formgroup--line-height,
.c-my-type-tester__formgroup--letter-spacing {
  margin-left: 2rem;
  margin-right: 0;
}
@media (max-width: 1023.98px) {
  .c-my-type-tester__formgroup--line-height,
  .c-my-type-tester__formgroup--letter-spacing {
    display: none;
  }
}

.c-my-type-tester__select {
  padding-right: 20px;
  appearance: none;
  border: none;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  color: var(--my-type-tester-fg, #000);
  z-index: 2;
  position: relative;
  background: transparent;
  outline: none;
}
@media screen and (min-width: 1440px) {
  .c-my-type-tester__select {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-my-type-tester__select {
    line-height: auto;
  }
}
.c-my-type-tester__select option {
  color: #000;
  background: #fff;
}
.c-my-type-tester__formgroup--family-single .c-my-type-tester__select {
  pointer-events: none;
}

.c-my-type-tester__select-arrow {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 11px;
  width: 6px;
  z-index: 1;
  position: absolute;
  color: var(--my-type-tester-fg, #000);
}
.c-my-type-tester__formgroup--family-single .c-my-type-tester__select-arrow {
  display: none;
}

.c-my-type-tester__label {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  color: var(--my-type-tester-fg, #000);
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .c-my-type-tester__label {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-my-type-tester__label {
    line-height: auto;
  }
}
.c-my-type-tester__label + .c-my-type-tester__label {
  margin-left: 40px;
}
@media (min-width: 1024px) {
  .c-my-type-tester__label + .c-my-type-tester__label {
    margin-left: 80px;
  }
}
@media (min-width: 1920px) {
  .c-my-type-tester__label + .c-my-type-tester__label {
    margin-left: 115px;
  }
}
.c-my-type-tester__label:hover {
  cursor: pointer;
}
.c-my-type-tester__label .c-my-type-tester__switch-checkbox {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  appearance: none;
  margin: 0;
  cursor: pointer;
}

.c-my-type-tester__checkbox-arrow {
  width: 15px;
  height: 15px;
}

.c-my-type-tester__checkbox-label {
  display: inline-grid;
  grid-template-columns: 15px auto;
  gap: 10px;
}
.c-my-type-tester__checkbox-label .c-my-type-tester__checkbox {
  appearance: none;
  margin: 0;
  color: var(--my-type-tester-fg, #000);
  width: 12px;
  height: 12px;
  border: 0.5px solid var(--my-type-tester-fg, #000);
  border-radius: 50%;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
  display: grid;
  place-content: center;
}
.c-my-type-tester__checkbox-label .c-my-type-tester__checkbox *,
.c-my-type-tester__checkbox-label .c-my-type-tester__checkbox *:before,
.c-my-type-tester__checkbox-label .c-my-type-tester__checkbox *:after {
  box-sizing: border-box;
}
.c-my-type-tester__checkbox-label .c-my-type-tester__checkbox::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: scale(0);
  transition: all 300ms ease-in-out;
  box-shadow: inset 12px 12px var(--my-type-tester-fg, #000);
}
.c-my-type-tester__checkbox-label .c-my-type-tester__checkbox:checked::before {
  transform: scale(1);
}

.c-my-type-tester__slider {
  height: 1px;
  -webkit-appearance: none;
  margin: 0 12px;
  width: 100%;
  max-width: 205px;
}

.c-my-type-tester__slider::-webkit-slider-runnable-track {
  height: 1px;
  cursor: pointer;
  background: var(--my-type-tester-fg, #000);
}

.c-my-type-tester__slider::-webkit-slider-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--my-type-tester-fg, #000);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7.5px;
}

.c-my-type-tester__slider-number {
  color: var(--my-type-tester-fg, #000);
  font-size: 10px;
  display: inline;
}

@media (min-width: 1400px) {
  html.is-home,
  .page-template-page-home {
    overflow-y: hidden;
  }
}

.c-page-home {
  position: relative;
}
@media (min-width: 1400px) {
  .c-page-home {
    display: flex;
    flex-wrap: nowrap;
  }
}

[data-showreel-wrapper] {
  width: 100%;
  height: 100%;
}
@media (min-width: 1400px) {
  [data-showreel-wrapper] {
    width: 140vw;
    display: flex;
    height: calc(100vh - var(--header-height, 50px));
  }
}

[data-showreel-wrapper].is-hover [data-showreel-video], [data-showreel-wrapper].is-hovered [data-showreel-video],
[data-showreel-wrapper].is-hover [data-showreel-projects],
[data-showreel-wrapper].is-hovered [data-showreel-projects] {
  transition: all ease 0.5s;
}
@media (min-width: 1400px) {
  [data-showreel-wrapper].is-hover [data-showreel-video],
  [data-showreel-wrapper].is-hover [data-showreel-projects] {
    transform: translateX(-20vw) !important;
  }
}

.c-page-home__video {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
}
.c-page-home__video:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 56.25vw;
}
@media (min-width: 1400px) {
  .c-page-home__video {
    width: 100%;
    max-width: 80vw;
    right: 0;
    bottom: 0;
    object-fit: cover;
    top: 0;
  }
  .c-page-home__video:after {
    display: none;
  }
}

.vimeo-wrapper iframe,
.vimeo-wrapper video {
  pointer-events: none;
  width: 100%;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1400px) {
  .vimeo-wrapper iframe,
  .vimeo-wrapper video {
    min-height: 100vh;
  }
}

[data-showreel-video-mute] {
  position: absolute;
  left: 1.25rem;
  bottom: 10px;
  z-index: 2;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  color: #ffffff;
  text-decoration: none !important;
  mix-blend-mode: difference;
  white-space: nowrap;
}
@media screen and (min-width: 1440px) {
  [data-showreel-video-mute] {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  [data-showreel-video-mute] {
    line-height: auto;
  }
}
@media (min-width: 1400px) {
  [data-showreel-video-mute] {
    bottom: 50px;
    display: unset;
    font-family: "Soehne", helvetica, arial, sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
    font-size: 1.56rem !important;
  }
}
@media screen and (min-width: 1400px) and (min-width: 1440px) {
  [data-showreel-video-mute] {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1400px) and (min-width: 1440px) {
  [data-showreel-video-mute] {
    line-height: 2.8rem;
  }
}
[data-showreel-video-mute]:hover {
  color: #ffffff;
}

.c-page-home__video-timeline {
  display: none;
  position: absolute;
  bottom: 50px;
  left: 50%;
  min-height: 60px;
  transform: translateX(-50%);
  width: 50vw;
  mix-blend-mode: difference;
}
@media (min-width: 1400px) {
  .c-page-home__video-timeline {
    display: unset;
  }
}

.c-page-home__video-link {
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  font-size: 1.56rem !important;
  color: #ffffff;
  mix-blend-mode: difference;
  white-space: nowrap;
  transition: all 0.3s linear;
}
@media screen and (min-width: 1440px) {
  .c-page-home__video-link {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-page-home__video-link {
    line-height: 2.8rem;
  }
}
.c-page-home__video-link__text {
  width: 15px;
  height: 15px;
}

.c-page-home__projects {
  position: relative;
  background-color: #ffffff;
  flex-shrink: 0;
  width: 100vw;
}
@media (min-width: 1400px) {
  .c-page-home__projects {
    width: 40vw;
    overflow-y: auto;
  }
}

/* ==========================================================================
   #POST
   Includes styles for default WP images classes
   ========================================================================== */
.c-post {
  margin-bottom: 2em;
}
.c-post::after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

.alignnone {
  margin: 1em 1em 1em 0;
}

.aligncenter {
  margin: 1em auto;
}

.alignright {
  float: right;
  margin: 1em 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 1em 1em 1em 0;
}

.wp-caption {
  text-align: center;
}

.wp-caption-text {
  font-style: italic;
  margin-top: 0.5em;
}

.c-projects {
  background-color: #fff;
}

.c-projects__filter {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 4;
  padding: 12px 10px;
  background: #fff;
}

.c-projects__search-wrapper {
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  max-width: 0;
  display: flex;
  padding: 0.625rem;
  flex-wrap: nowrap;
  overflow: hidden;
  transition: all 300ms ease-in-out;
  visibility: hidden;
}
.c-projects__search-wrapper.is-active {
  width: 100%;
  visibility: visible;
  max-width: 100%;
}
.c-projects__search-wrapper .wpgb-facet {
  width: 100%;
}

.c-projects__filter-open,
.c-projects__filter-close,
.c-projects__search-close,
.c-projects__search-open {
  background: transparent;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 15px;
  font-family: "Soehne", helvetica, arial, sans-serif;
  color: #69e876;
  padding: 0;
  display: flex;
  transition: all 300ms ease-in-out;
}
@media screen and (min-width: 1440px) {
  .c-projects__filter-open,
  .c-projects__filter-close,
  .c-projects__search-close,
  .c-projects__search-open {
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .c-projects__filter-open,
  .c-projects__filter-close,
  .c-projects__search-close,
  .c-projects__search-open {
    line-height: 24px;
  }
}
.c-projects__filter-open:hover,
.c-projects__filter-close:hover,
.c-projects__search-close:hover,
.c-projects__search-open:hover {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
}

@media (max-width: 1023.98px) {
  .c-projects__search-open.is-active {
    display: none;
  }
}

.c-projects__filter-open,
.c-projects__filter-close {
  color: #000;
}
@media (min-width: 1024px) {
  .c-projects__filter-open,
  .c-projects__filter-close {
    display: none;
  }
}

.c-projects__filter-open.is-active {
  color: #69e876;
}

.c-projects__filter-close {
  display: none;
  margin-left: auto;
}
.c-projects__filter-close.is-active {
  display: block;
}
@media (max-width: 1023.98px) {
  .c-projects__filter-close + .wpgb-facet-1 {
    display: none;
    visibility: hidden;
    transform: translateX(100%);
    width: 100%;
    height: calc(100vh - 35px);
    padding: 20px 0 20px 15px;
    left: 0;
    top: 35px;
    position: absolute;
    background: #fff;
    transition: all 300ms ease-in-out;
  }
  .c-projects__filter-close + .wpgb-facet-1.is-active {
    display: flex;
    visibility: visible;
    transform: translateX(0);
  }
}

.is-project-overview section > .elementor[data-elementor-type=wp-post] {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0 10px 0 20px;
}
.is-project-overview section > .elementor[data-elementor-type=wp-post] * {
  --e-transform-scale: 1 !important;
  --e-transform-translateY: 0 !important;
  --e-transform-translateX: 0 !important;
}
.is-project-overview section > .elementor[data-elementor-type=wp-post] .elementor-container {
  display: flex;
  flex-wrap: wrap;
}
.is-project-overview section > .elementor[data-elementor-type=wp-post] .elementor-container .is-project-col--full + .is-project-col--full {
  margin-top: 20px;
}
.is-project-overview section > .elementor[data-elementor-type=wp-post] .elementor-widget:not(:last-child) {
  margin-bottom: 20px;
}

.is-project-overview .is-project-content {
  order: 10;
  width: 100%;
}
.is-project-overview .is-project-content .elementor-widget-wrap {
  padding: 10px 0 !important;
}

.is-project-overview .is-project-similar {
  order: 1000;
  width: 100%;
}

.is-project-overview .is-project-image {
  order: 100;
  width: 100% !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}
.is-project-overview .is-project-image .elementor-widget-wrap:empty {
  display: none !important;
}
@media (min-width: 1024px) {
  .is-project-overview .is-project-image {
    width: calc(33.3333333333% - 20px) !important;
    margin-bottom: 20px;
  }
}
@media (min-width: 1920px) {
  .is-project-overview .is-project-image {
    width: calc(25% - 20px) !important;
    margin-bottom: 20px;
  }
}
.is-project-overview .is-project-image,
.is-project-overview .is-project-image *:not(.elementor-widget-video .elementor-wrapper) {
  padding: 0 0.5px;
}
.is-project-overview .is-project-image .elementor-widget-container {
  margin: 0 !important;
}
.is-project-overview .is-project-image .elementor-widget-container > div {
  width: 100% !important;
  max-width: 100% !important;
  transform: rotate(0deg) !important;
}
.is-project-overview .is-project-image .elementor-widget-video .elementor-wrapper {
  padding-bottom: var(--widget-video-aspect) !important;
}
.is-project-overview .is-project-image .elementor-fit-aspect-ratio {
  padding-bottom: 68.25% !important;
}

.is-project-overview .is-project-col--hidden {
  display: none !important;
}

.is-project-overview .is-project-detail {
  display: none;
}

@media (min-width: 1024px) {
  .is-project-overview .is-project-col--full {
    width: 100% !important;
  }
}

[data-simple-project] {
  background: none;
}

.c-projects__links {
  display: flex;
  width: 100%;
  margin: 10px 0;
  padding: 0 20px;
}
@media (max-width: 1023.98px) {
  .c-projects__links {
    display: none;
  }
}

.c-projects__archive-link {
  justify-content: left;
  align-items: flex-start;
  display: flex;
  margin: auto 0;
  text-decoration: none;
  color: #000;
}
.c-projects__archive-link:hover {
  color: #000;
}
.c-projects__archive-link .c-link__icon {
  width: 18px;
  height: 18px;
}
@media (min-width: 1024px) {
  .c-projects__archive-link .c-link__icon {
    width: 20px;
    height: 20px;
  }
}

.c-projects__toggle {
  border: none;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  font-size: 20px !important;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle {
    line-height: auto;
  }
}
.c-projects__toggle:hover {
  cursor: pointer;
}
.c-projects__toggle .c-projects__toggle--details {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.33rem;
  line-height: 1.53rem;
  font-size: 20px !important;
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle .c-projects__toggle--details {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle .c-projects__toggle--details {
    line-height: 1.8rem;
  }
}
.c-projects__toggle .c-projects__toggle--overview {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  font-size: 20px !important;
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle .c-projects__toggle--overview {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle .c-projects__toggle--overview {
    line-height: auto;
  }
}
.c-projects__toggle.is-active .c-projects__toggle--details {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  font-size: 20px !important;
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle.is-active .c-projects__toggle--details {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle.is-active .c-projects__toggle--details {
    line-height: auto;
  }
}
.c-projects__toggle.is-active .c-projects__toggle--overview {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.33rem;
  line-height: 1.53rem;
  font-size: 20px !important;
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle.is-active .c-projects__toggle--overview {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-projects__toggle.is-active .c-projects__toggle--overview {
    line-height: 1.8rem;
  }
}

.c-projects__toggle__item {
  margin: 0 auto;
  padding: 0 15px;
  min-width: 160px;
  color: #000;
}
.c-projects__toggle__item:hover {
  font-family: "Soehne Breit", helvetica, arial, sans-serif !important;
}

.c-projects__headline {
  display: block;
}
@media (min-width: 774px) {
  .c-projects__headline {
    display: flex;
  }
}

.c-projects__title {
  display: none;
  font-size: 38.4px;
  margin: 20px 0 20px 20px;
  line-height: unset;
}

.is-project-overview .c-projects__title {
  display: block;
}

.c-projects__project-types {
  margin-left: 10px;
}
@media (min-width: 774px) {
  .c-projects__project-types {
    margin: 20px 0 20px 100px;
  }
}

.c-projects__project-type {
  display: none;
  font-size: 38.4px !important;
  color: #000;
  text-decoration: none;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
}
@media screen and (min-width: 1440px) {
  .c-projects__project-type {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-projects__project-type {
    line-height: auto;
  }
}
.c-projects__project-type:hover {
  color: #000;
}

.is-project-overview .c-projects__project-type {
  display: inline-block;
}

.c-similar-projects {
  border-top: 1px solid #000000;
  display: flex;
  margin-left: -10px;
  width: calc(100% + 20px);
  flex-wrap: wrap;
  padding: 10px 10px;
}
@media (min-width: 1920px) {
  .c-similar-projects {
    padding: 50px 20px;
  }
}
.is-project-overview .c-similar-projects {
  margin-left: -30px;
  width: calc(100% + 50px);
}

.c-similar-projects__link {
  white-space: nowrap;
  display: flex;
  margin-bottom: 25px;
  color: #000000;
  width: 100%;
}
.c-similar-projects__link:hover {
  color: var(--link-color, inherit);
  /*& .c-similar-projects__image .c-img:before {
    content: '';
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--link-color, inherit);
    opacity: 0.7;
  }*/
}
@media (min-width: 774px) {
  .c-similar-projects__link {
    width: unset;
    margin-bottom: 12px;
  }
}

.c-similar-projects__text {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  margin: auto 15px auto 0;
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .c-similar-projects__text {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-similar-projects__text {
    line-height: auto;
  }
}
@media (min-width: 774px) {
  .c-similar-projects__text {
    width: unset;
    font-size: 18px;
    margin-right: 15px;
  }
}
@media (min-width: 1024px) {
  .c-similar-projects__text {
    font-size: 24px;
    margin-right: 10px;
  }
}
@media (min-width: 1920px) {
  .c-similar-projects__text {
    font-size: 38.4px;
    margin-right: 20px;
  }
}

.c-similar-projects__image {
  margin: auto 15px auto 0;
  visibility: hidden;
}
@media (min-width: 774px) {
  .c-similar-projects__image {
    visibility: visible;
    margin-right: 15px;
  }
}
@media (min-width: 1024px) {
  .c-similar-projects__image {
    margin-right: 10px;
  }
}
@media (min-width: 1920px) {
  .c-similar-projects__image {
    margin-right: 20px;
  }
}
.c-similar-projects__image video,
.c-similar-projects__image .c-img {
  width: 52px !important;
}
.c-similar-projects__image video {
  height: 35px;
  object-fit: cover;
}

/* ==========================================================================
   SLIDER
   ========================================================================== */
/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.elementor-widget.elementor-widget-swe_slider {
  overflow: hidden;
}

.c-slider--offgrid {
  position: relative;
}
.c-slider--offgrid .c-slider__container {
  overflow: initial;
}

.c-slider--has-bg {
  padding: 2rem 0;
}
.c-slider--has-bg::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  z-index: -1;
  top: 0;
  width: 100vw;
  height: 100%;
}
@media (min-width: 1024px) {
  .c-slider--has-bg.c-slider--anonymous {
    padding: 0;
  }
  .c-slider--has-bg.c-slider--anonymous:before {
    display: none;
  }
}

.c-slider__wrapper {
  box-sizing: inherit;
}

.c-slider__item {
  height: 400px !important;
  width: auto !important;
}

.c-slider__container {
  width: 100%;
}

.swiper-slide {
  text-align: center;
  width: auto;
}

.swiper-wrapper {
  width: 50%;
}

.c-slider__item--offgrid {
  transition: opacity 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  width: 100%;
  height: initial;
}
@media (min-width: 1024px) {
  .c-slider__item--offgrid {
    width: 100%;
  }
  .c-slider__item--offgrid:last-of-type {
    margin-right: 16.6666666667%;
  }
}
.c-slider__item--offgrid.c-slider__item--current, .c-slider__item--offgrid.swiper-slide-active {
  opacity: 1;
}

@media (min-width: 1024px) {
  .c-slider--offgrid-nextonly .c-slider__item--viewed {
    opacity: 0;
    z-index: -2;
    transition-duration: 0.2s;
  }
}

.c-thumb-marquee {
  background: var(--background-color, inherit);
  color: var(--font-color, inherit);
  white-space: nowrap;
}
.c-thumb-marquee:hover {
  color: var(--font-color);
}

.c-thumb-marquee__wrapper {
  background: var(--background-color, inherit);
  color: var(--font-color, inherit);
  overflow: hidden;
  line-height: 1;
  height: 28px;
  padding: 6px 0;
}
@media (min-width: 774px) {
  .c-thumb-marquee__wrapper {
    line-height: 1;
    height: 38px;
    padding: 10px 0;
  }
}

.js-marquee {
  height: 100%;
  display: flex;
}

.c-thumb-marquee__desc {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 0.933rem;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  color: var(--font-color);
  margin: auto 0;
}
@media screen and (min-width: 1440px) {
  .c-thumb-marquee__desc {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-thumb-marquee__desc {
    line-height: 1.13rem;
  }
}
.c-thumb-marquee__desc:hover {
  color: var(--font-color);
}
@media (min-width: 774px) {
  .c-thumb-marquee__desc {
    font-size: 24px;
  }
}
.c-thumb-marquee__desc:before {
  content: " • ";
  display: inline-block;
  margin: 0 0.375rem 0;
  color: var(--font-color);
}
.c-thumb-marquee__desc:first-child:before {
  content: none;
}
.c-thumb-marquee__desc:nth-child(even) {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 0.933rem;
  font-size: 15px;
}
@media screen and (min-width: 1440px) {
  .c-thumb-marquee__desc:nth-child(even) {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-thumb-marquee__desc:nth-child(even) {
    line-height: 1.13rem;
  }
}
@media (min-width: 774px) {
  .c-thumb-marquee__desc:nth-child(even) {
    font-size: 24px;
  }
}
.c-thumb-marquee__desc:nth-child(even):before {
  content: " • ";
  display: inline-block;
  margin: 0 0.3125rem 0;
  color: var(--font-color);
}

.c-type-tester {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: #ffffff;
  background: var(--type-tester-bgcolor);
  padding: 1rem;
}
@media (min-width: 1024px) {
  .c-type-tester {
    padding: 2.625rem;
  }
}

.c-type-tester__settings {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: calc(var(--type-tester-editable-font-size) * 0.75);
}
@media (min-width: 1024px) {
  .c-type-tester__settings {
    justify-content: left;
  }
}

.c-type-tester__editable {
  color: var(--type-tester-color);
  font-family: var(--type-tester-font-family);
  font-weight: var(--type-tester-font-weight);
  font-size: var(--type-tester-editable-font-size);
  font-feature-settings: var(--type-tester-alternates);
  line-height: var(--type-tester-editable-line-height);
  outline: none !important;
  overflow: hidden;
  padding-bottom: 0.5em;
  cursor: context-menu;
  column-count: var(--type-tester-columns, 1);
  column-gap: var(--type-tester-spacing, 0);
}
.c-type-tester__editable * {
  color: var(--type-tester-color) !important;
  font-family: var(--type-tester-font-family) !important;
  font-weight: var(--type-tester-font-weight) !important;
  font-size: var(--type-tester-editable-font-size) !important;
  font-feature-settings: var(--type-tester-alternates) !important;
  line-height: var(--type-tester-line-height);
  margin-bottom: 0 !important;
}
.c-type-tester__editable[contenteditable=true] {
  cursor: pointer;
}

.c-type-tester__editable--singleline,
.c-type-tester__editable--singleline * {
  white-space: nowrap !important;
}

.c-type-tester__row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  color: var(--type-tester-color);
  margin-top: calc(var(--type-tester-editable-font-size) * 0.5);
}
.c-type-tester__row + .c-type-tester__row {
  margin-top: calc(var(--type-tester-editable-font-size) * 0.75);
}

.c-type-tester__col {
  width: 100%;
}
@media (min-width: 1024px) {
  .c-type-tester__col {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .c-type-tester--grid-80 .c-type-tester__col--label {
    width: 16.6666666667%;
  }
}
@media (min-width: 1024px) {
  .c-type-tester--grid-50 .c-type-tester__col--label {
    width: 50%;
  }
}
.c-type-tester--grid-100 .c-type-tester__col--label {
  display: none;
}

@media (min-width: 1024px) {
  .c-type-tester--grid-80 .c-type-tester__col--grid {
    width: 83.3333333333%;
  }
}
@media (min-width: 1024px) {
  .c-type-tester--grid-50 .c-type-tester__col--grid {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .c-type-tester--grid-100 .c-type-tester__col--grid {
    width: 100%;
  }
}

.c-type-tester__grid {
  display: flex;
  flex-wrap: wrap;
}

.c-type-tester__grid__item {
  background: #ffffff;
  background: var(--type-tester-bgcolor);
  box-shadow: inset 1px -1px 0px 0px var(--type-tester-color);
  position: relative;
  z-index: 2;
  z-index: var(--grid-item-index);
  min-width: 2.36em;
}
.c-type-tester__grid__item:after {
  display: block;
  content: "";
  position: relative;
  width: 100%;
  padding-bottom: 113.2352941176%;
  z-index: 2;
  z-index: var(--grid-item-index);
}
.c-type-tester__grid__item:hover {
  transform: scale(2);
  box-shadow: inset 0.5px -0.5px 0px 0px var(--type-tester-color);
  z-index: 2;
  z-index: calc(var(--grid-item-index) * 10);
}
.c-type-tester__grid__item.is-neighbor {
  opacity: 0;
  z-index: 2;
  z-index: calc(var(--grid-item-index) * 12);
}
.c-type-tester__grid__item[data-scale-setting=bottom-right]:hover {
  transform-origin: top left;
}
.c-type-tester__grid__item[data-scale-setting=bottom-right]:hover:before {
  position: absolute;
  right: -1.5px;
  top: 50%;
  width: 1px;
  box-shadow: -0.5px 0 0 0 var(--type-tester-color);
  height: 50%;
  display: block;
  content: "";
}
.c-type-tester__grid__item[data-scale-setting=bottom-right]:hover[data-is-second-last-col=true]:before {
  position: absolute;
  right: -1.5px;
  top: 0;
  width: 1px;
  box-shadow: -0.5px 0 0 0 var(--type-tester-color);
  height: 100%;
  display: block;
  content: "";
}
.c-type-tester__grid__item[data-scale-setting=bottom-left]:hover {
  transform-origin: top right;
}
.c-type-tester__grid__item[data-scale-setting=top-right]:hover {
  transform-origin: bottom left;
  top: 0;
}
.c-type-tester__grid__item[data-scale-setting=top-right]:hover[data-is-second-last-col=true]:before, .c-type-tester__grid__item[data-scale-setting=top-right]:hover[data-item-row="1"]:before {
  position: absolute;
  right: -1.5px;
  bottom: 0;
  width: 1px;
  box-shadow: -0.5px -0.5px 0 0 var(--type-tester-color);
  height: 100%;
  display: block;
  content: "";
}
.c-type-tester__grid__item[data-scale-setting=top-left]:hover {
  top: 2px;
  transform-origin: bottom right;
}

.c-type-tester__grid__item--uppercase {
  text-transform: uppercase;
}

.c-type-tester__grid__item-inner {
  font-size: 1em;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--type-tester-color);
  font-family: var(--type-tester-font-family);
  font-weight: var(--type-tester-font-weight);
  font-feature-settings: var(--type-tester-alternates);
}

.c-type-tester__formgroup {
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .c-type-tester__formgroup {
    margin-right: 50px;
  }
}
@media (min-width: 1920px) {
  .c-type-tester__formgroup {
    margin-right: 180px;
  }
}

@media (max-width: 1023.98px) {
  .c-type-tester__formgroup--style {
    display: none;
  }
}

@media (max-width: 1023.98px) {
  .c-type-tester__formgroup--switch {
    display: none;
  }
}

.c-type-tester__formgroup--size {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1023.98px) {
  .c-type-tester__formgroup--size {
    display: none;
  }
}

.c-type-tester__formgroup--line-height {
  margin-left: 2rem;
  margin-right: 0;
}
@media (max-width: 1023.98px) {
  .c-type-tester__formgroup--line-height {
    display: none;
  }
}

.c-type-tester__select {
  padding-right: 20px;
  appearance: none;
  border: none;
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  color: var(--type-tester-color);
  z-index: 2;
  position: relative;
  background: transparent;
  outline: none;
}
@media screen and (min-width: 1440px) {
  .c-type-tester__select {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-type-tester__select {
    line-height: auto;
  }
}
.c-type-tester__select option {
  color: #000;
  background: #fff;
}
.c-type-tester__formgroup--family-single .c-type-tester__select {
  pointer-events: none;
}

.c-type-tester__select-arrow {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 11px;
  width: 6px;
  z-index: 1;
  position: absolute;
  color: var(--type-tester-color);
}
.c-type-tester__formgroup--family-single .c-type-tester__select-arrow {
  display: none;
}

.c-type-tester__label {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  color: var(--type-tester-color);
  line-height: 1;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .c-type-tester__label {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-type-tester__label {
    line-height: auto;
  }
}
.c-type-tester__label + .c-type-tester__label {
  margin-left: 40px;
}
@media (min-width: 1024px) {
  .c-type-tester__label + .c-type-tester__label {
    margin-left: 80px;
  }
}
@media (min-width: 1920px) {
  .c-type-tester__label + .c-type-tester__label {
    margin-left: 115px;
  }
}
.c-type-tester__label:hover {
  cursor: pointer;
}
.c-type-tester__label input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  appearance: none;
  margin: 0;
  cursor: pointer;
}

.c-type-tester__checkbox-arrow {
  width: 15px;
  height: 15px;
}

.c-type-tester__radio-label {
  display: inline-grid;
  grid-template-columns: 15px auto;
  gap: 10px;
}
.c-type-tester__radio-label .c-type-tester__radio {
  appearance: none;
  margin: 0;
  color: var(--type-tester-color);
  width: 12px;
  height: 12px;
  border: 0.5px solid #000;
  border: 0.5px solid var(--type-tester-color);
  border-radius: 50%;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
  display: grid;
  place-content: center;
}
.c-type-tester__radio-label .c-type-tester__radio *,
.c-type-tester__radio-label .c-type-tester__radio *:before,
.c-type-tester__radio-label .c-type-tester__radio *:after {
  box-sizing: border-box;
}
.c-type-tester__radio-label .c-type-tester__radio::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: scale(0);
  transition: all 300ms ease-in-out;
  box-shadow: inset 12px 12px #000;
  box-shadow: inset 12px 12px var(--type-tester-color);
}
.c-type-tester__radio-label .c-type-tester__radio:checked::before {
  transform: scale(1);
}

.c-type-tester__slider {
  height: 1px;
  -webkit-appearance: none;
  margin: 0 12px;
  width: 100%;
  max-width: 205px;
}

.c-type-tester__slider::-webkit-slider-runnable-track {
  height: 0.5px;
  cursor: pointer;
  background: #000;
  background: var(--type-tester-color);
}

.c-type-tester__slider::-webkit-slider-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #000;
  background: var(--type-tester-color);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7.5px;
}

.c-type-tester__slider-number {
  color: var(--type-tester-color);
  font-size: 10px;
  display: inline;
}

.c-work-thumbs {
  padding-top: 0;
  padding-bottom: 0;
}

.c-work-thumbs__wrapper {
  position: relative;
  color: #000;
  overflow: hidden;
  margin-top: -1px;
}
.c-work-thumbs__wrapper .c-work-thumbs__text--hover {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  visibility: hidden;
}
@media (max-width: 773.98px) {
  .c-work-thumbs:focus-within .c-work-thumbs__wrapper, .c-work-thumbs:active .c-work-thumbs__wrapper, .c-work-thumbs:hover .c-work-thumbs__wrapper {
    background: var(--dynamic-bg-color);
    color: var(--dynamic-fg-color);
  }
}
@media (min-width: 774px) {
  .c-work-thumbs:hover .c-work-thumbs__wrapper .c-work-thumbs__text:not(.c-work-thumbs__text--hover) {
    opacity: 0;
    visibility: hidden;
  }
  .c-work-thumbs:hover .c-work-thumbs__wrapper .c-work-thumbs__text--hover {
    opacity: 1;
    visibility: visible;
  }
}

.c-work-thumbs__text {
  white-space: unset;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.c-work-thumbs__text.c-work-thumbs__text--hover {
  background: var(--dynamic-bg-color);
  color: var(--dynamic-fg-color);
}

.c-work-thumbs__text-inner {
  display: flex;
}
.c-work-thumbs__text--hover .c-work-thumbs__text-inner {
  flex-direction: column;
}
.c-work-thumbs__text-inner > div {
  min-width: var(--work-thumb-width, 340px);
  margin-right: 3.75rem;
}

.c-work-thumbs__flagline {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  font-size: 15px !important;
}
@media screen and (min-width: 1440px) {
  .c-work-thumbs__flagline {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-work-thumbs__flagline {
    line-height: auto;
  }
}

.c-work-thumbs__headline {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
  font-size: 22px;
  line-height: 1;
  min-height: 100%;
  overflow: hidden;
  width: var(--marquee-wrapper-width, 100%);
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (min-width: 1440px) {
  .c-work-thumbs__headline {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .c-work-thumbs__headline {
    line-height: auto;
  }
}
.c-work-thumbs__text--hover .c-work-thumbs__headline {
  text-overflow: revert;
  overflow: revert;
  width: revert;
  white-space: revert;
}
@media (min-width: 774px) {
  .c-work-thumbs__headline {
    font-size: 22px;
    line-height: 1;
  }
}
@media (min-width: 1920px) {
  .c-work-thumbs__headline {
    font-size: 24px;
  }
}

.c-work-thumbs__video {
  position: relative;
  line-height: 0;
}
.c-work-thumbs__video video {
  pointer-events: none;
  aspect-ratio: 8/5;
}

.c-work-thumbs__image .ff-container .ff-canvas {
  aspect-ratio: 8/5;
  position: relative;
  object-fit: cover;
}
.c-work-thumbs__image .ff-image {
  aspect-ratio: 8/5;
  box-sizing: border-box;
  object-fit: cover;
}
.c-work-thumbs__image .ff-container.ff-inactive .ff-canvas.ff-canvas-ready {
  transition: none;
  aspect-ratio: 8/5;
  box-sizing: border-box;
  object-fit: cover;
  height: 100% !important;
  width: auto;
}

/* ==========================================================================
   #ALIGN
   ========================================================================== */
.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-clear {
  clear: both;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

/* ==========================================================================
   #CLEARFIX
   ========================================================================== */
/**
 * Attach our clearfix mixin to a utility class.
 */
.u-clearfix::after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

.u-color-black--900 {
  background-color: #000000;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-black--900 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-black--900 > div:after {
  width: 100%;
  content: "#000000";
  font-weight: normal;
}

.u-color-white--900 {
  background-color: #ffffff;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-white--900 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-white--900 > div:after {
  width: 100%;
  content: "#ffffff";
  font-weight: normal;
}

.u-fonts__display {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 4.5rem;
  line-height: 4.5rem;
  -ms-hyphens: auto;
      hyphens: auto;
}
@media screen and (min-width: 1440px) {
  .u-fonts__display {
    font-size: 10.486rem;
  }
}
@media screen and (min-width: 1440px) {
  .u-fonts__display {
    line-height: 10.486rem;
  }
}

.u-fonts__display--soehne {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 4.5rem;
  line-height: 4.5rem;
  -ms-hyphens: auto;
      hyphens: auto;
  font-family: "Soehne", helvetica, arial, sans-serif;
}
@media screen and (min-width: 1440px) {
  .u-fonts__display--soehne {
    font-size: 10.486rem;
  }
}
@media screen and (min-width: 1440px) {
  .u-fonts__display--soehne {
    line-height: 10.486rem;
  }
}

.u-fonts__headline-h1 {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.33rem;
  line-height: 1.53rem;
}
@media screen and (min-width: 1440px) {
  .u-fonts__headline-h1 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .u-fonts__headline-h1 {
    line-height: 1.8rem;
  }
}

.u-fonts__headline-h2 {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 0.933rem;
}
@media screen and (min-width: 1440px) {
  .u-fonts__headline-h2 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .u-fonts__headline-h2 {
    line-height: 1.13rem;
  }
}

.u-fonts__headline-h3 {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.13rem;
}
@media screen and (min-width: 1440px) {
  .u-fonts__headline-h3 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .u-fonts__headline-h3 {
    line-height: 1.13rem;
  }
}

.u-fonts__headline-h4 {
  font-family: "Soehne Breit", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.66rem;
  line-height: auto;
}
@media screen and (min-width: 1440px) {
  .u-fonts__headline-h4 {
    font-size: 0.66rem;
  }
}
@media screen and (min-width: 1440px) {
  .u-fonts__headline-h4 {
    line-height: auto;
  }
}

.u-fonts__paragraph {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media screen and (min-width: 1440px) {
  .u-fonts__paragraph {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .u-fonts__paragraph {
    line-height: 2.8rem;
  }
}

.u-fonts__paragraph-uppercase {
  font-family: "Soehne", helvetica, arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: auto;
}
@media screen and (min-width: 1440px) {
  .u-fonts__paragraph-uppercase {
    font-size: 2.56rem;
  }
}
@media screen and (min-width: 1440px) {
  .u-fonts__paragraph-uppercase {
    line-height: auto;
  }
}

/* ==========================================================================
   #HIDE
   ========================================================================== */
/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/**
 * Hide visually and from screen readers.
 */
.u-hidden {
  display: none !important;
}

.u-hidden\@small {
  display: none;
}
@media (min-width: 774px) {
  .u-hidden\@small {
    display: block;
  }
}

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