@charset "UTF-8";
/* Fonts
   ========================================================================== */
/* Breakpoints
   ========================================================================== */
/* Colors
   ========================================================================== */
/* Type
   ========================================================================== */
/* Spacing
   ========================================================================== */
@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;
     -moz-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] {
  -webkit-appearance: none;
     -moz-appearance: none;
          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);
  -webkit-appearance: none;
          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;
  -moz-user-select: none;
       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;
  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;
  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;
  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:-webkit-full-screen {
  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:-webkit-full-screen video {
  height: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .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;
  -o-object-fit: contain;
     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;
  -moz-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: 374px) {
  .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: 375px), 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: 1200px) {
  .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: 374px) {
  .has-text-centered-mobile {
    text-align: center !important;
  }
}
@media screen and (min-width: 375px), print {
  .has-text-centered-tablet {
    text-align: center !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .has-text-centered-desktop-only {
    text-align: center !important;
  }
}
@media screen and (min-width: 1200px) {
  .has-text-centered-widescreen {
    text-align: center !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .has-text-justified-mobile {
    text-align: justify !important;
  }
}
@media screen and (min-width: 375px), print {
  .has-text-justified-tablet {
    text-align: justify !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .has-text-justified-desktop-only {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1200px) {
  .has-text-justified-widescreen {
    text-align: justify !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .has-text-left-mobile {
    text-align: left !important;
  }
}
@media screen and (min-width: 375px), print {
  .has-text-left-tablet {
    text-align: left !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .has-text-left-desktop-only {
    text-align: left !important;
  }
}
@media screen and (min-width: 1200px) {
  .has-text-left-widescreen {
    text-align: left !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .has-text-right-mobile {
    text-align: right !important;
  }
}
@media screen and (min-width: 375px), print {
  .has-text-right-tablet {
    text-align: right !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .has-text-right-desktop-only {
    text-align: right !important;
  }
}
@media screen and (min-width: 1200px) {
  .has-text-right-widescreen {
    text-align: right !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .is-block-mobile {
    display: block !important;
  }
}
@media screen and (min-width: 375px), print {
  .is-block-tablet {
    display: block !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .is-block-desktop-only {
    display: block !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-block-widescreen {
    display: block !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .is-flex-mobile {
    display: flex !important;
  }
}
@media screen and (min-width: 375px), print {
  .is-flex-tablet {
    display: flex !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .is-flex-desktop-only {
    display: flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-flex-widescreen {
    display: flex !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .is-inline-mobile {
    display: inline !important;
  }
}
@media screen and (min-width: 375px), print {
  .is-inline-tablet {
    display: inline !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .is-inline-desktop-only {
    display: inline !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-inline-widescreen {
    display: inline !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .is-inline-block-mobile {
    display: inline-block !important;
  }
}
@media screen and (min-width: 375px), print {
  .is-inline-block-tablet {
    display: inline-block !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .is-inline-block-desktop-only {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-inline-block-widescreen {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .is-inline-flex-mobile {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 375px), print {
  .is-inline-flex-tablet {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .is-inline-flex-desktop-only {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-inline-flex-widescreen {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .is-hidden-mobile {
    display: none !important;
  }
}
@media screen and (min-width: 375px), print {
  .is-hidden-tablet {
    display: none !important;
  }
}
@media screen and (min-width: 375px) and (max-width: 1023px) {
  .is-hidden-tablet-only {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .is-hidden-touch {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-hidden-desktop {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .is-hidden-desktop-only {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-hidden-widescreen {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .is-invisible-mobile {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 375px), print {
  .is-invisible-tablet {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .is-invisible-desktop-only {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-invisible-widescreen {
    visibility: hidden !important;
  }
}
@media screen and (min-width: 1200px) 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: 12px;
}
.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: 374px) {
  .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: 375px), 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: 1200px) {
  .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: -12px;
  margin-right: -12px;
  margin-top: -12px;
}
.columns:last-child, .o-cols:last-child {
  margin-bottom: -12px;
}
.columns:not(:last-child), .o-cols:not(:last-child) {
  margin-bottom: calc(1.5rem - 12px);
}
.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: 375px), 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: 374px) {
  .columns.is-variable.is-0-mobile, .is-variable.is-0-mobile.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 375px), print {
  .columns.is-variable.is-0-tablet, .is-variable.is-0-tablet.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .columns.is-variable.is-0-desktop-only, .is-variable.is-0-desktop-only.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1200px) {
  .columns.is-variable.is-0-widescreen, .is-variable.is-0-widescreen.o-cols {
    --columnGap: 0rem;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .columns.is-variable.is-1-mobile, .is-variable.is-1-mobile.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 375px), print {
  .columns.is-variable.is-1-tablet, .is-variable.is-1-tablet.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .columns.is-variable.is-1-desktop-only, .is-variable.is-1-desktop-only.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .columns.is-variable.is-1-widescreen, .is-variable.is-1-widescreen.o-cols {
    --columnGap: 0.25rem;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .columns.is-variable.is-2-mobile, .is-variable.is-2-mobile.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 375px), print {
  .columns.is-variable.is-2-tablet, .is-variable.is-2-tablet.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .columns.is-variable.is-2-desktop-only, .is-variable.is-2-desktop-only.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .columns.is-variable.is-2-widescreen, .is-variable.is-2-widescreen.o-cols {
    --columnGap: 0.5rem;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .columns.is-variable.is-3-mobile, .is-variable.is-3-mobile.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 375px), print {
  .columns.is-variable.is-3-tablet, .is-variable.is-3-tablet.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .columns.is-variable.is-3-desktop-only, .is-variable.is-3-desktop-only.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .columns.is-variable.is-3-widescreen, .is-variable.is-3-widescreen.o-cols {
    --columnGap: 0.75rem;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .columns.is-variable.is-4-mobile, .is-variable.is-4-mobile.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 375px), print {
  .columns.is-variable.is-4-tablet, .is-variable.is-4-tablet.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .columns.is-variable.is-4-desktop-only, .is-variable.is-4-desktop-only.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1200px) {
  .columns.is-variable.is-4-widescreen, .is-variable.is-4-widescreen.o-cols {
    --columnGap: 1rem;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .columns.is-variable.is-5-mobile, .is-variable.is-5-mobile.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 375px), print {
  .columns.is-variable.is-5-tablet, .is-variable.is-5-tablet.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .columns.is-variable.is-5-desktop-only, .is-variable.is-5-desktop-only.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1200px) {
  .columns.is-variable.is-5-widescreen, .is-variable.is-5-widescreen.o-cols {
    --columnGap: 1.25rem;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .columns.is-variable.is-6-mobile, .is-variable.is-6-mobile.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 375px), print {
  .columns.is-variable.is-6-tablet, .is-variable.is-6-tablet.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .columns.is-variable.is-6-desktop-only, .is-variable.is-6-desktop-only.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .columns.is-variable.is-6-widescreen, .is-variable.is-6-widescreen.o-cols {
    --columnGap: 1.5rem;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .columns.is-variable.is-7-mobile, .is-variable.is-7-mobile.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 375px), print {
  .columns.is-variable.is-7-tablet, .is-variable.is-7-tablet.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .columns.is-variable.is-7-desktop-only, .is-variable.is-7-desktop-only.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .columns.is-variable.is-7-widescreen, .is-variable.is-7-widescreen.o-cols {
    --columnGap: 1.75rem;
  }
}
@media screen and (min-width: 1200px) 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: 374px) {
  .columns.is-variable.is-8-mobile, .is-variable.is-8-mobile.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 375px), print {
  .columns.is-variable.is-8-tablet, .is-variable.is-8-tablet.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 375px) 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: 1199px) {
  .columns.is-variable.is-8-desktop-only, .is-variable.is-8-desktop-only.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .columns.is-variable.is-8-widescreen, .is-variable.is-8-widescreen.o-cols {
    --columnGap: 2rem;
  }
}
@media screen and (min-width: 1200px) 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: 1199px) {
  .container.is-widescreen:not(.is-max-desktop) {
    max-width: 1136px;
  }
}
@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: 1200px) {
  .container:not(.is-max-desktop) {
    max-width: 1136px;
  }
}
@media screen and (min-width: 1408px) {
  .container:not(.is-max-desktop):not(.is-max-widescreen) {
    max-width: 1344px;
  }
}

/* ==========================================================================
   FUNCTIONS
   ========================================================================== */
/* ==========================================================================
   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: "Circular Air";
  src: url("../assets/fonts/CircularXXSub-Medium.woff2") format("woff2"), url("../assets/fonts/CircularXXSub-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Circular Air";
  src: url("../assets/fonts/CircularXXSub-Book.woff2") format("woff2"), url("../assets/fonts/CircularXXSub-Book.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Circular Air";
  src: url("../assets/fonts/CircularXXSub-Bold.woff2") format("woff2"), url("../assets/fonts/CircularXXSub-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
/* ==========================================================================
   #NORMALIZE
   ========================================================================== */
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Add the correct display in IE 9-.
 */
menu {
  display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   #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
   ========================================================================== */
strong,
b {
  font-weight: 500;
}

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

/* ==========================================================================
   BODY
   ========================================================================== */
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
  touch-action: pan-x pan-y;
}
body main {
  flex: 1 0 auto;
}
body footer {
  flex-shrink: 0;
}

/* ==========================================================================
   #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: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  h1 {
    font-size: calc(34px + 26 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  h1 {
    font-size: 60px;
  }
}
@media (min-width: 1024px) {
  h1 {
    line-height: 1.13;
  }
}

h2 {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  h2 {
    font-size: calc(30px + 20 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  h2 {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  h2 {
    line-height: 1.2;
  }
}

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

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project.
 */
html {
  background: #ffffff;
  background-size: cover;
  color: #000000;
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font: normal 1rem/1.5 "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
}

/* ==========================================================================
   #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 {
  transition: color 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  color: #181818;
  text-decoration: underline;
}
a:focus-visible:not(.c-btn), a.is-focused:not(.c-btn) {
  outline: none;
  box-shadow: -4px -4px 0 0 hsl(13, 74%, 70%), 4px 4px 0 0 hsl(13, 74%, 70%), -4px 4px 0 0 hsl(13, 74%, 70%), 4px -4px 0 0 hsl(13, 74%, 70%), 0 1px 2px 0 hsla(0, 0%, 0%, 0.06), 0 1px 3px 0 hsla(0, 0%, 0%, 0.1);
}

/* ==========================================================================
   #LISTS
   ========================================================================== */
ul {
  margin-left: 1em;
  padding-left: 1em;
}

li {
  margin-bottom: 0.5em;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1em;
  margin-top: 0.5em;
}

dt {
  font-weight: bold;
}

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

/* ==========================================================================
   #PARAGRAPHS
   ========================================================================== */
/**
 * Simple default styles for paragraphs. 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/).
 */
p {
  font-size: 14;
  line-height: 1.4;
}
@media screen and (min-width: 375px) {
  p {
    font-size: calc(14 + 2 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  p {
    font-size: 16;
  }
}
p:not(:last-child) {
  margin-bottom: 14;
}
@media screen and (min-width: 375px) {
  p:not(:last-child) {
    margin-bottom: calc(14 + 2 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  p:not(:last-child) {
    margin-bottom: 16;
  }
}

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

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/* ==========================================================================
   #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: 1280px;
  width: 100%;
}
.o-wrapper:after {
  content: "" !important;
  display: block !important;
  clear: both !important;
}

/* ==========================================================================
   #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-`.
 */
.c-btn {
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 0.75rem 0 0;
  cursor: pointer;
  padding: 0.5rem 1.25rem;
  border-radius: 1.875rem;
  text-decoration: none;
  color: #181818;
  background-color: #38ffaf;
  border: 2px solid #38ffaf;
}
@media screen and (min-width: 375px) {
  .c-btn {
    font-size: calc(18px + 4 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-btn {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .c-btn {
    line-height: 1;
  }
}
.c-btn:hover {
  color: #181818;
  background-color: transparent;
  border-color: #181818;
}
.c-btn:focus-visible, .c-btn.is-focused, .c-btn:active, .c-btn.is-active {
  color: #181818;
  background-color: transparent;
  border-color: #181818;
}
.c-btn[disabled], .c-btn[disabled]:hover, .c-btn.is-disabled, .c-btn.is-disabled:hover {
  opacity: 0.7;
  pointer-events: none;
}

/* Style variants
   ========================================================================== */
.c-btn--white {
  background-color: #ffffff;
  color: #181818;
  border-color: #ffffff;
  /*&[href] {
    &:hover {
      background-color: map-get($brand-colors, 'orange','500');
    }
  }

  &:hover,
  &:focus,
  &.is-hovered,
  &.is-focused {
    color: map-get($brand-colors, 'white', '900');
    background-color: map-get($brand-colors, 'orange', '500');
    border-color: map-get($brand-colors, 'orange', '500');
  }

  &:active,
  &.is-active {
    color: map-get($brand-colors, 'white', '900');
  }*/
}

.c-btn--black {
  background-color: #181818;
  color: #ffffff;
  border-color: #181818;
}

.c-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  padding: 2.5rem 0;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .c-contact-grid {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .c-contact-grid {
    padding: 4.75rem 0;
  }
}

.c-contact-person {
  width: 100%;
  margin: 0 0 3.25rem;
}
@media (min-width: 768px) {
  .c-contact-person {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 1024px) {
  .c-contact-person {
    width: calc(25% - 2rem);
  }
}
.c-contact-person:hover .c-contact-person__text,
.c-contact-person:hover .c-contact-person__linkedin {
  visibility: visible;
}

.c-contact-person__image {
  position: relative;
  width: 100%;
  background: #ebe9e6;
}

.c-contact-person__profile {
  position: relative;
  z-index: 4;
  bottom: 0;
  left: 0;
  padding-right: 10%;
  padding-top: 10%;
}

.u-lottie {
  position: absolute;
  width: 60%;
  z-index: 2;
  top: 10px;
  right: 10px;
}

.c-contact-person__icon {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 12.5rem;
  height: 12.5rem;
  color: #38ffaf;
  fill: #38ffaf;
}

.c-contact-person__text {
  visibility: visible;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.36;
  letter-spacing: 0;
  color: #181818;
}
@media screen and (min-width: 375px) {
  .c-contact-person__text {
    font-size: calc(22px + 2 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-contact-person__text {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-contact-person__text {
    line-height: 1.5;
  }
}
.c-contact-person__text--title {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.36;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-contact-person__text--title {
    font-size: calc(18px + 2 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-contact-person__text--title {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .c-contact-person__text--title {
    line-height: 1.5;
  }
}

.c-contact-person__linkedin {
  position: relative;
  color: #181818;
}
.c-contact-person__linkedin:hover {
  color: #38ffaf;
}
.c-contact-person__linkedin-icon {
  width: 2rem;
  height: 2rem;
}

.c-footer {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 2rem 1.25rem;
  background-color: #ffffff;
  color: #181818;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-footer {
    font-size: calc(22px + 0 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-footer {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .c-footer {
    line-height: 2;
  }
}
@media (min-width: 1024px) {
  .c-footer {
    padding: 5.75rem 4rem;
    flex-direction: row;
  }
}

.c-footer__row {
  width: 100%;
  margin-right: 0;
}
@media (min-width: 1024px) {
  .c-footer__row {
    width: 33.33%;
    margin: 0 2rem;
  }
}
.c-footer__row:first-of-type {
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .c-footer__row:first-of-type {
    margin: 0;
  }
}

.c-footer__logo {
  width: 8rem;
  height: 2rem;
}
@media (min-width: 1024px) {
  .c-footer__logo {
    height: 2.5rem;
    width: 11.25rem;
  }
}

.c-footer__menu-item {
  width: 100%;
  display: block;
  color: #181818;
}

.c-graphic-teaser {
  padding: 4.75rem 0;
  width: 100%;
}
.c-graphic-teaser.c-graphic-teaser--collide {
  padding: 1.75rem 0;
}
@media (min-width: 1024px) {
  .c-graphic-teaser.c-graphic-teaser--collide {
    padding: 4.75rem 0;
  }
}

.c-text-section__flagline {
  margin-bottom: 0.5rem;
  width: 100%;
  color: #343434;
}
@media (min-width: 1024px) {
  .c-text-section__flagline {
    margin-bottom: 0.5rem;
  }
}

.c-graphic-teaser__headline {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #181818;
  margin-bottom: 3rem;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 375px) {
  .c-graphic-teaser__headline {
    font-size: calc(34px + 26 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-graphic-teaser__headline {
    font-size: 60px;
  }
}
@media (min-width: 1024px) {
  .c-graphic-teaser__headline {
    line-height: 1.13;
  }
}
@media (min-width: 1024px) {
  .c-graphic-teaser__headline {
    width: 66%;
    margin-bottom: 6.25rem;
  }
  .c-graphic-teaser--collide .c-graphic-teaser__headline {
    margin: 0;
  }
}
.c-graphic-teaser__headline--green {
  color: #38ffaf;
}

.c-graphic-teaser__icon {
  width: 100%;
  height: 13.125rem;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  color: transparent;
  opacity: 0;
  transition: opacity 1.25s ease-in-out;
}
@media (min-width: 1024px) {
  .c-graphic-teaser--collide .c-graphic-teaser__icon {
    transform: scale(1.2);
  }
}
@media (max-width: 1023.98px) {
  .c-graphic-teaser__icon.is-image {
    height: auto;
  }
}
@media (min-width: 1024px) {
  .c-graphic-teaser__icon {
    margin-bottom: 5.375rem;
    height: 38.75rem;
    color: #ffffff;
  }
  .c-graphic-teaser--collide .c-graphic-teaser__icon {
    height: 48.75rem;
    margin: -4.375rem 0 -4.375rem;
    transform: scale(0.9);
  }
}
.c-graphic-teaser__icon--animate {
  opacity: 1;
}

.c-graphic-teaser__desc {
  margin-bottom: 2rem;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.36;
  letter-spacing: 0;
  color: #181818;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 375px) {
  .c-graphic-teaser__desc {
    font-size: calc(20px + 4 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-graphic-teaser__desc {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-graphic-teaser__desc {
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .c-graphic-teaser__desc {
    margin-bottom: 2.75rem;
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .c-graphic-teaser__desc--align-right {
    margin-left: 40%;
  }
}

.c-graphic-teaser__button--mobile {
  margin-top: 2.5rem;
  display: block;
}
@media (min-width: 1024px) {
  .c-graphic-teaser__button--mobile {
    display: none;
  }
}

.c-header {
  display: flex;
  flex-direction: row;
  padding: 1.25rem 0.875rem 1.25rem 1.25rem;
  background: transparent;
  position: fixed;
  z-index: 99;
  width: 100%;
  transition: background-color 2s ease-in-out;
}
@media (min-width: 1024px) {
  .c-header {
    padding: 1.5rem 4.75rem 1.5rem 2.5rem;
  }
}
.c-header:after {
  content: "";
  height: 80px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 96;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}
@media (min-width: 1024px) {
  .c-header:after {
    height: 120px;
  }
}
.c-header.is-active:after {
  display: none;
}
.c-header--small:after {
  height: 100%;
  background-color: #ffffff;
}
.c-header--dark:not(.is-scrolled):after, .c-header--light:not(.is-scrolled):after {
  background-color: transparent;
}

.c-header__logo,
.c-header__logo-icon {
  height: 2.5rem;
  width: 10rem;
  z-index: 99;
  color: #181818;
}
@media (min-width: 1024px) {
  .c-header__logo,
  .c-header__logo-icon {
    height: 4.375rem;
    width: 11.25rem;
  }
}
.c-header__logo.is-active,
.c-header__logo-icon.is-active {
  visibility: hidden;
}
.c-header--light:not(.is-scrolled) .c-header__logo,
.c-header--light:not(.is-scrolled) .c-header__logo-icon {
  color: #ffffff;
}
.c-header--dark:not(.is-scrolled) .c-header__logo,
.c-header--dark:not(.is-scrolled) .c-header__logo-icon {
  color: #181818;
}

.c-header__menu {
  display: none;
  z-index: 99;
}
@media (min-width: 1024px) {
  .c-header__menu {
    display: block;
    margin: auto 0 auto auto;
  }
}

.c-header__item {
  text-decoration: none;
  margin-right: 2rem;
  color: #181818;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-header__item {
    font-size: calc(16px + 6 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-header__item {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .c-header__item {
    line-height: 1.63;
  }
}
@media (max-width: 1023.98px) {
  .c-header__item {
    display: none;
  }
}
@media (min-width: 1200px) {
  .c-header__item {
    margin-right: 3rem;
  }
}
.c-header__item:hover {
  color: #38ffaf;
}
.c-header__item.is-current {
  color: #38ffaf;
}
.c-header--light:not(.is-scrolled) .c-header__item {
  color: #ffffff;
}
.c-header--light:not(.is-scrolled) .c-header__item.is-current {
  color: #38ffaf;
}
.c-header--dark:not(.is-scrolled) .c-header__item {
  color: #000000;
}
.c-header--dark:not(.is-scrolled) .c-header__item.is-current {
  color: #38ffaf;
}

.c-header__button {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0;
  line-height: 1 !important;
}
@media screen and (min-width: 375px) {
  .c-header__button {
    font-size: calc(16px + 6 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-header__button {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .c-header__button {
    line-height: 1.63;
  }
}
.c-header--light:not(.is-scrolled) .c-header__button:hover {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}
@media (max-width: 1023.98px) {
  .c-header__button {
    display: none;
  }
}

/* Mobile Header */
.c-mobile-header__toggle {
  width: 36px;
  height: 23px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin: auto 0 auto auto;
  z-index: 99;
}
@media (min-width: 1024px) {
  .c-mobile-header__toggle {
    display: none;
  }
}

.c-mobile-header__toggle span {
  background-color: #181818;
  position: absolute;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 3px;
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
}
.c-header--light:not(.is-scrolled) .c-mobile-header__toggle span {
  background-color: #ffffff;
}
.c-header--dark:not(.is-scrolled) .c-mobile-header__toggle span {
  background-color: #181818;
}

.c-mobile-header__toggle span:nth-child(1) {
  top: 0;
  left: 0;
}

.c-mobile-header__toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.c-mobile-header__toggle span:nth-child(3) {
  bottom: 0;
  left: 0;
}

.c-mobile-header__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
  background-color: #343434;
}

.c-mobile-header__toggle.is-active span:nth-child(2) {
  display: none;
}

.c-mobile-header__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 0;
  top: 10px;
  background-color: #343434;
}

.c-mobile-header__menu {
  display: none;
  transform: translateX(100vw);
  transition: all 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  transition-delay: 2s;
}

.c-mobile-header__menu.is-active {
  display: flex;
  flex-direction: column;
  padding: 3.75rem 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  transform: translateX(0);
}

.c-mobile-header__menu-item {
  text-decoration: none;
  color: #343434;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.55;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-mobile-header__menu-item {
    font-size: calc(36px + -12 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-mobile-header__menu-item {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-mobile-header__menu-item {
    line-height: 1;
  }
}
.c-mobile-header__menu-item.is-current {
  color: #38ffaf;
}

.c-mobile-header__button {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 2rem;
  margin-right: auto;
}
@media screen and (min-width: 375px) {
  .c-mobile-header__button {
    font-size: calc(24px + 0 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-mobile-header__button {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-mobile-header__button {
    line-height: 1;
  }
}

.c-hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 1023.98px) {
  .c-hero.c-hero--video-delay {
    height: 45vh;
  }
}

.c-hero__image-item {
  width: 100%;
  height: 100vh;
}

.c-hero__text {
  position: absolute;
  text-align: left;
  z-index: 4;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #38ffaf;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-hero__text {
    font-size: calc(42px + 38 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-hero__text {
    font-size: 80px;
  }
}
@media (min-width: 1024px) {
  .c-hero__text {
    line-height: 1.2;
  }
}
@media (min-width: 1024px) {
  .c-hero__text {
    width: 66%;
  }
}
@media (min-width: 1440px) {
  .c-hero__text {
    font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 1440px) and (min-width: 375px) {
  .c-hero__text {
    font-size: calc(42px + 118 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) and (min-width: 1440px) {
  .c-hero__text {
    font-size: 160px;
  }
}
@media (min-width: 1440px) and (min-width: 1024px) {
  .c-hero__text {
    line-height: 1.2;
  }
}
.c-hero__text--h1 {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-hero__text--h1 {
    font-size: calc(34px + 26 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-hero__text--h1 {
    font-size: 60px;
  }
}
@media (min-width: 1024px) {
  .c-hero__text--h1 {
    line-height: 1.13;
  }
}
.c-hero--video-delay .c-hero__text {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
@media (min-width: 1024px) {
  .c-hero--video-delay .c-hero__text {
    text-align: center;
  }
}
.c-hero--video-delay.is-animated .c-hero__text {
  opacity: 1;
}

.c-hero__video {
  min-height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023.98px) {
  .c-hero--video-delay .c-hero__video {
    min-height: 45vh;
  }
}

.c-image-slider {
  padding: 2.5rem 0;
}
@media (min-width: 1024px) {
  .c-image-slider {
    padding: 4.75rem 0;
  }
  .c-widget--theme-green .c-image-slider {
    padding-top: 4.75rem;
  }
}

.c-image-slider__meta {
  display: flex;
  width: 100%;
  color: #181818;
  flex-direction: column-reverse;
}
@media (min-width: 1024px) {
  .c-image-slider__meta {
    flex-direction: row;
    z-index: 10;
    width: 100%;
  }
}

.c-image-slider__flagline {
  margin-bottom: 0.5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .c-image-slider__flagline {
    margin-bottom: 0.5rem;
  }
}

.c-image-slider__column {
  width: 100%;
}
@media (min-width: 1024px) {
  .c-image-slider__column {
    width: 50%;
  }
  .c-image-slider__column:first-child {
    padding-right: 0.75rem;
  }
}

.c-image-slider__headline {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .c-image-slider__headline {
    font-size: calc(34px + 26 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-image-slider__headline {
    font-size: 60px;
  }
}
@media (min-width: 1024px) {
  .c-image-slider__headline {
    line-height: 1.13;
  }
}
.c-image-slider__headline--green {
  color: #38ffaf;
}

.c-image-slider__desc {
  margin-bottom: 2rem;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.36;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-image-slider__desc {
    font-size: calc(20px + 4 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-image-slider__desc {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-image-slider__desc {
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .c-image-slider__desc {
    margin-bottom: 2.75rem;
  }
}

.c-image-slider__slider {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .c-image-slider__slider {
    margin: 0;
  }
}

.c-image-teaser {
  padding: 2.5rem 0;
  width: 100%;
}
@media (max-width: 1023.98px) {
  .c-image-teaser {
    padding: 2.5rem 0 !important;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser {
    padding: 4.75rem 0;
  }
}

.c-image-teaser--valign-bottom .c-image-teaser__row {
  align-items: flex-end;
}

.c-image-teaser__row {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .c-image-teaser__row {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser--reverse .c-image-teaser__row {
    flex-direction: row-reverse;
  }
}

.c-image-teaser__row-item {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .c-image-teaser__row-item {
    width: 50%;
  }
  .c-image-teaser__row-item:first-of-type {
    padding-right: 1.5rem;
  }
  .c-image-teaser__row-item:last-of-type {
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser--reverse .c-image-teaser__row-item:first-of-type {
    padding-left: 1.5rem;
  }
  .c-image-teaser--reverse .c-image-teaser__row-item:last-of-type {
    padding-right: 1.5rem;
    padding-left: 0;
  }
}

.c-image-teaser__flagline {
  margin-bottom: 1rem;
  width: 100%;
  color: #343434;
}
@media (min-width: 1024px) {
  .c-image-teaser__flagline {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser__flagline--right {
    margin-left: calc(50% + 1.5rem);
  }
}

.c-image-teaser__headline {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
  color: #181818;
}
@media screen and (min-width: 375px) {
  .c-image-teaser__headline {
    font-size: calc(34px + 26 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-image-teaser__headline {
    font-size: 60px;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser__headline {
    line-height: 1.13;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser__headline {
    position: relative;
    z-index: 2;
  }
}
.c-image-teaser__headline--green {
  color: #38ffaf;
}
.c-image-teaser__headline--sm {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-image-teaser__headline--sm {
    font-size: calc(30px + 20 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-image-teaser__headline--sm {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser__headline--sm {
    line-height: 1.2;
  }
}

@media (min-width: 1024px) {
  .c-image-teaser__headline--overflow {
    width: 115%;
  }
}

.c-image-teaser__desc {
  margin-bottom: 2rem;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.36;
  letter-spacing: 0;
  color: #181818;
}
@media screen and (min-width: 375px) {
  .c-image-teaser__desc {
    font-size: calc(20px + 4 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-image-teaser__desc {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser__desc {
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser__desc {
    margin-bottom: 2.75rem;
  }
}

.c-image-teaser__button-row {
  display: flex;
  flex-direction: row;
}

.c-image-teaser__button {
  display: none;
}
@media (min-width: 1024px) {
  .c-image-teaser__button {
    display: block;
  }
}

.c-image-teaser__button--mobile {
  margin-top: 2.5rem;
  display: block;
}
@media (min-width: 1024px) {
  .c-image-teaser__button--mobile {
    display: none;
  }
}

.c-image-teaser__icon {
  margin-bottom: 0.5rem;
  color: #181818;
  width: 96px;
  height: 96px;
  position: relative;
  left: 0;
}
@media (min-width: 1024px) {
  .c-image-teaser__icon {
    margin-bottom: 0.5rem;
    width: 120px;
    height: 120px;
  }
}

.c-image-teaser__svg {
  position: relative;
  width: 210px;
  height: 210px;
}
@media (max-width: 1023.98px) {
  .c-image-teaser__svg {
    margin: 0 auto;
    display: block;
  }
}
@media (min-width: 1024px) {
  .c-image-teaser__svg {
    width: 300px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.c-image-teaser__anim {
  transform: translate(-50%);
  position: relative;
  width: 210px;
  height: 210px;
  left: 50%;
  top: 50%;
  right: 0;
}
@media (min-width: 1024px) {
  .c-image-teaser__anim {
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
  }
}

.c-image-teaser__video-svg {
  z-index: 7;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: 22%;
  width: 50%;
}

@media (min-width: 1024px) {
  .c-image-teaser--bg-contain .c-image-teaser__image {
    position: relative;
    height: calc(100% + 14rem);
    top: -7rem;
  }
}
@media (min-width: 1200px) {
  .c-image-teaser--bg-contain .c-image-teaser__image {
    height: calc(100% + 18rem);
    top: -9rem;
  }
}

.c-intro-section__image-item--contain {
  height: 100%;
}
.c-intro-section__image-item--contain .c-img__full {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

/* ==========================================================================
   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,
.c-img__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-img--inline .c-img__full,
.c-img--inline .c-img__placeholder {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--image-focuspoint);
     object-position: var(--image-focuspoint);
}
.c-img--bg .c-img__full,
.c-img--bg .c-img__placeholder {
  background: transparent no-repeat var(--image-focuspoint)/cover;
}

.c-img__placeholder {
  transition: opacity 0.3s cubic-bezier(0.7, 0.6, 0.1, 0.8);
  filter: blur(8px);
  transform: scale(1.125);
}
[data-loaded=true] + .c-img__placeholder {
  opacity: 0;
}

.c-intro-section {
  padding: 2.5rem 0;
}
@media (min-width: 1024px) {
  .c-intro-section {
    padding: 4.75rem 0;
  }
}

.c-intro-section__flagline {
  margin-bottom: 0.5rem;
  color: #181818;
  width: 100%;
}
@media (min-width: 1024px) {
  .c-intro-section__flagline {
    margin-bottom: 0.5rem;
  }
}

.c-intro-section__anim {
  margin-bottom: 1rem;
  color: #181818;
  width: 120px;
  height: 120px;
  position: relative;
  margin-top: 1rem;
  left: 0;
}
@media (min-width: 1024px) {
  .c-intro-section__anim {
    margin-bottom: 1.5rem;
    margin-top: 2rem;
  }
}

.c-intro-section__row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  .c-intro-section__row {
    flex-direction: row;
  }
}
.c-intro-section__row--reverse {
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .c-intro-section__row--reverse {
    flex-direction: row-reverse;
  }
}

.c-intro-section__row-item {
  width: 100%;
}
@media (min-width: 1024px) {
  .c-intro-section__row-item {
    width: calc(50% - 1.5rem);
  }
  .c-intro-section__row-item:first-of-type {
    margin-right: 3rem;
  }
  .c-intro-section__row-item--headline-60:first-of-type {
    width: calc(60% - 1.5rem);
  }
  .c-intro-section__row-item--headline-60:last-of-type {
    width: calc(40% - 1.5rem);
  }
  .c-intro-section__row-item--headline-70:first-of-type {
    width: calc(70% - 1.5rem);
  }
  .c-intro-section__row-item--headline-70:last-of-type {
    width: calc(30% - 1.5rem);
  }
}

.c-intro-section__headline {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #181818;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .c-intro-section__headline {
    font-size: calc(34px + 26 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-intro-section__headline {
    font-size: 60px;
  }
}
@media (min-width: 1024px) {
  .c-intro-section__headline {
    line-height: 1.13;
  }
}
@media (min-width: 1024px) {
  .c-intro-section__headline {
    margin: 0;
  }
}
.c-intro-section__headline--green {
  color: #38ffaf;
}

.c-intro-section__desc {
  color: #181818;
  margin-bottom: 2rem;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.31;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-intro-section__desc {
    font-size: calc(22px + 10 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-intro-section__desc {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .c-intro-section__desc {
    line-height: 1.31;
  }
}
@media (min-width: 1024px) {
  .c-intro-section__desc {
    margin-bottom: 2.75rem;
  }
}

.c-intro-section__button {
  margin-top: 3.75rem;
}

.c-job-offer {
  padding: 0 0 5rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .c-job-offer {
    width: 55%;
  }
}

.c-job-offer__flagline {
  padding: 2.5rem 0 0;
  margin-bottom: 0.5rem;
  color: #181818;
  width: 100%;
}
@media (min-width: 1024px) {
  .c-job-offer__flagline {
    padding: 5rem 0 0;
    margin-bottom: 0.5rem;
  }
}

.c-job-offer__head {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #181818;
  margin-bottom: 5.5rem;
  width: 100%;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 375px) {
  .c-job-offer__head {
    font-size: calc(30px + 20 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-job-offer__head {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .c-job-offer__head {
    line-height: 1.2;
  }
}
@media (min-width: 1024px) {
  .c-job-offer__head {
    width: 66%;
    margin-bottom: 6.25rem;
  }
}

.c-job-offer__headline {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #181818;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .c-job-offer__headline {
    font-size: calc(24px + 16 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-job-offer__headline {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .c-job-offer__headline {
    line-height: 1.2;
  }
}
.c-job-offer__headline--green {
  color: #38ffaf;
}

.c-job-offer__desc {
  margin-bottom: 2rem;
  color: #181818;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.36;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-job-offer__desc {
    font-size: calc(20px + 4 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-job-offer__desc {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-job-offer__desc {
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .c-job-offer__desc {
    margin-bottom: 2.75rem;
  }
}

.c-project-grid {
  padding: 4.75rem 0;
  width: 100%;
}

.c-project-grid__flagline {
  margin-bottom: 0.5rem;
  color: #181818;
  width: 100%;
}
@media (min-width: 1024px) {
  .c-project-grid__flagline {
    margin-bottom: 0.5rem;
  }
}

.c-project-grid__headline {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
  color: #181818;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 375px) {
  .c-project-grid__headline {
    font-size: calc(34px + 26 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-project-grid__headline {
    font-size: 60px;
  }
}
@media (min-width: 1024px) {
  .c-project-grid__headline {
    line-height: 1.13;
  }
}
.c-project-grid__headline--green {
  color: #38ffaf;
}

.c-project-grid__grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-project-grid__project {
  width: 40%;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .c-project-grid__project {
    width: calc(16.6666666667% - 2rem);
    margin-right: 2rem;
    margin-bottom: 0;
  }
  .c-project-grid__project:last-of-type {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .c-project-grid__image {
    margin-bottom: 2.5rem;
  }
}

.c-project-grid__logo {
  width: 100%;
}
.c-project-grid__logo.c-project-grid__logo--scale-0-9 {
  transform: scale(0.9);
}
.c-project-grid__logo.c-project-grid__logo--scale-1-2 {
  transform: scale(1.1);
}
@media (min-width: 1024px) {
  .c-project-grid__logo.c-project-grid__logo--scale-1-2 {
    transform: scale(1.2);
  }
}

.c-widget--scroll-section {
  margin-top: -50vh;
}
@media (min-width: 1024px) {
  .c-widget--scroll-section {
    margin-bottom: 50vh;
  }
}

.pin-spacer {
  position: absolute !important;
}

.c-scroll-section__meta {
  height: 100vh;
  width: 100%;
  position: relative;
}

.c-scroll-section__headline {
  width: 100%;
  color: #181818;
}
@media (min-width: 1024px) {
  .c-scroll-section__headline {
    width: 80%;
  }
}
.c-scroll-section__headline--white {
  color: #ffffff;
}

.c-scroll-section__desc {
  width: 100%;
  position: absolute;
  bottom: 3.5rem;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.36;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-scroll-section__desc {
    font-size: calc(20px + 4 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-scroll-section__desc {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-scroll-section__desc {
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .c-scroll-section__desc {
    width: 50%;
    bottom: 12.5rem;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .c-scroll-section__desc--align-right {
    right: 0;
  }
}

/* ==========================================================================
   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 {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  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;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.c-slider {
  position: relative;
}

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

.c-slider__controls {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(calc(-50% - 2.25rem));
  display: flex;
  width: 100%;
}

.c-slider__button {
  background: none;
  color: #ffffff;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  cursor: pointer;
}
.c-slider__button svg {
  display: block;
  width: 100%;
  fill: none;
  height: 100%;
}
@media (min-width: 1024px) {
  .c-slider__button {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-slider__button:hover {
  color: #38ffaf;
}
.c-slider__button:hover svg {
  fill: #38ffaf;
}
.c-slider__button--prev {
  margin-left: 0.5rem;
  left: 0;
}
@media (min-width: 1024px) {
  .c-slider__button--prev {
    margin-left: 1.5rem;
  }
}
.c-slider__button--next {
  margin-right: 0.5rem;
  right: 0;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .c-slider__button--next {
    margin-right: 1.5rem;
  }
}

.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;
}

.c-slider__pagination {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .c-slider__pagination {
    margin-left: auto;
    margin-right: auto;
  }
}

.c-image-slider__slide-desc {
  margin-top: 1rem;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.36;
  letter-spacing: 0;
  color: #181818;
  padding-right: 30px;
}
@media screen and (min-width: 375px) {
  .c-image-slider__slide-desc {
    font-size: calc(22px + 2 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-image-slider__slide-desc {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-image-slider__slide-desc {
    line-height: 1.5;
  }
}

.c-text-section {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .c-text-section {
    padding: 4.75rem 0;
  }
}

.c-text-section__flagline {
  margin-bottom: 0.5rem;
  width: 100%;
  color: #181818;
}
@media (min-width: 1024px) {
  .c-text-section__flagline {
    margin-bottom: 0.5rem;
  }
}

.c-text-section__column {
  width: 100%;
}

.c-text-section__headline {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
  color: #181818;
}
@media screen and (min-width: 375px) {
  .c-text-section__headline {
    font-size: calc(34px + 26 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-text-section__headline {
    font-size: 60px;
  }
}
@media (min-width: 1024px) {
  .c-text-section__headline {
    line-height: 1.13;
  }
}
@media (min-width: 1024px) {
  .c-text-section__headline {
    margin-bottom: 1rem;
    width: 50%;
  }
  .c-text-section__headline--full {
    width: 100%;
  }
}
.c-text-section__headline--green {
  color: #38ffaf;
}

.c-text-section__desc {
  margin-bottom: 2rem;
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.36;
  letter-spacing: 0;
  color: #181818;
  width: 100%;
}
@media screen and (min-width: 375px) {
  .c-text-section__desc {
    font-size: calc(20px + 4 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-text-section__desc {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-text-section__desc {
    line-height: 1.4;
  }
}
@media (min-width: 1024px) {
  .c-text-section__desc {
    margin-bottom: 2.75rem;
    width: 50%;
  }
  .c-text-section__desc--align-left {
    margin-left: 0;
    margin-right: auto;
  }
  .c-text-section__desc--align-middle {
    margin-left: auto;
    margin-right: auto;
    width: 65%;
  }
  .c-text-section__desc--align-full {
    width: 100%;
  }
  .c-text-section__desc--align-right {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .c-text-section__button--align-left {
    margin-left: 0;
    margin-right: auto;
  }
  .c-text-section__button--align-middle {
    margin-left: auto;
    margin-right: auto;
    width: 65%;
  }
  .c-text-section__button--align-right {
    margin-left: 50%;
    margin-right: 0;
  }
}

.c-text {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  line-height: 1.3;
}
@media (max-width: 1023.98px) {
  .c-text {
    width: 100% !important;
  }
}

.c-text__color--green {
  color: #38ffaf;
}

.c-text__size--flagline {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-text__size--flagline {
    font-size: calc(16px + 6 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-text__size--flagline {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .c-text__size--flagline {
    line-height: 1.63;
  }
}
.c-text__size--h2 {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-text__size--h2 {
    font-size: calc(30px + 20 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-text__size--h2 {
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  .c-text__size--h2 {
    line-height: 1.2;
  }
}
.c-text__size--h3 {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-text__size--h3 {
    font-size: calc(24px + 16 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-text__size--h3 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .c-text__size--h3 {
    line-height: 1.2;
  }
}
.c-text__size--book-lg {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-text__size--book-lg {
    font-size: calc(22px + 0 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-text__size--book-lg {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .c-text__size--book-lg {
    line-height: 2;
  }
}
.c-text__size--medium-lg {
  font-family: "Circular Air", frutiger, "Frutiger Linotype", univers, calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", tahoma, geneva, "Helvetica Neue", helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.36;
  letter-spacing: 0;
}
@media screen and (min-width: 375px) {
  .c-text__size--medium-lg {
    font-size: calc(20px + 4 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .c-text__size--medium-lg {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .c-text__size--medium-lg {
    line-height: 1.4;
  }
}

.c-text__bottom--sm {
  margin-bottom: 1.5rem;
}
.c-text__bottom--lg {
  margin-bottom: 4.5rem;
}

.c-video {
  width: 100%;
}

html {
  --plyr-color-main: #38ffaf;
  --plyr-control-toggle-checked-background: #aff0d1;
  --plyr-font-family: "Circular Air";
  --plyr-video-control-background-hover: #aff0d1;
  --plyr-video-control: #38ffaf;
  --plyr-control-radius: 0.25rem;
  --plyr-control-spacing: 8px;
}

.plyr__controls .plyr__controls__item:first-child {
  background: #38ffaf;
}
.plyr__controls .plyr__controls__item:first-child:hover {
  background: #aff0d1;
}

.plyr__control--overlaid {
  background: #38ffaf;
}

.plyr--video .plyr__controls {
  padding: 0.5rem;
}

.plyr__control--fullscreen {
  display: none !important;
  position: fixed;
  left: 2rem;
  top: 2rem;
}
@media (min-width: 1024px) {
  .plyr__control--fullscreen {
    top: 3rem;
  }
}
.plyr:-webkit-full-screen .plyr__control--fullscreen {
  display: flex !important;
}
.plyr:fullscreen .plyr__control--fullscreen {
  display: flex !important;
}

.c-widget {
  width: 100vw;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .c-widget {
    padding: 0 2.5rem;
  }
}
.c-widget--theme-default {
  background-color: transparent;
}
.c-widget--theme-green {
  background-color: #e6ffeb;
}
.c-widget:first-of-type {
  padding-top: calc(var(--page-header-height));
}

.c-widget__inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 1.25rem;
  margin: 0 auto;
}
.c-widget__inner--full {
  max-width: unset;
  padding: 0;
  margin: unset;
}

.c-widget--hero {
  overflow: hidden;
  max-width: unset;
  padding: 0;
}
.c-widget--hero:first-of-type {
  padding: 0;
}

.c-widget--text {
  padding: 7.5rem 0;
}
.c-widget--text.c-widget--theme-green {
  padding: 7.5rem 0 0.5rem;
}
@media (min-width: 1024px) {
  .c-widget--text {
    padding: 10.5rem 0;
  }
  .c-widget--text.c-widget--theme-green {
    padding: 15.5rem 0 5.5rem;
  }
}

.c-widget--btn {
  padding: 0 0 3.5rem;
}
@media (min-width: 1024px) {
  .c-widget--btn {
    padding: 0 2.5rem 5.5rem;
  }
}

/* ==========================================================================
   #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-green--100 {
  background-color: #eefcf6;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-green--100 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-green--100 > div:after {
  width: 100%;
  content: "#eefcf6";
  font-weight: normal;
}
.u-color-green--200 {
  background-color: #e6ffeb;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-green--200 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-green--200 > div:after {
  width: 100%;
  content: "#e6ffeb";
  font-weight: normal;
}
.u-color-green--500 {
  background-color: #aff0d1;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-green--500 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-green--500 > div:after {
  width: 100%;
  content: "#aff0d1";
  font-weight: normal;
}
.u-color-green--900 {
  background-color: #38ffaf;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-green--900 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-green--900 > div:after {
  width: 100%;
  content: "#38ffaf";
  font-weight: normal;
}

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

.u-color-black--100 {
  background-color: #ebebeb;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-black--100 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-black--100 > div:after {
  width: 100%;
  content: "#ebebeb";
  font-weight: normal;
}
.u-color-black--200 {
  background-color: #ebe9e6;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-black--200 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-black--200 > div:after {
  width: 100%;
  content: "#ebe9e6";
  font-weight: normal;
}
.u-color-black--300 {
  background-color: #bbbbbb;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-black--300 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-black--300 > div:after {
  width: 100%;
  content: "#bbbbbb";
  font-weight: normal;
}
.u-color-black--500 {
  background-color: #343434;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-black--500 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-black--500 > div:after {
  width: 100%;
  content: "#343434";
  font-weight: normal;
}
.u-color-black--800 {
  background-color: #181818;
  height: 200px;
  width: 200px;
  margin: 20px;
  border: 2px solid #000000;
  display: flex;
  position: relative;
}
.u-color-black--800 > div {
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  width: 100%;
  padding: 5px;
  font-weight: bold;
}
.u-color-black--800 > div:after {
  width: 100%;
  content: "#181818";
  font-weight: normal;
}
.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;
}

/* ==========================================================================
   #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;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  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: 768px) {
  .u-hidden\@small {
    display: block;
  }
}

.u-no-break {
  white-space: nowrap;
  word-break: keep-all;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.u-lightbox__trigger {
  margin: 0;
  padding: 0.25rem 0.5rem;
}
@media (min-width: 1024px) {
  .u-lightbox__trigger {
    padding: 0.25rem 0.25rem 0.25rem 0.75rem;
  }
}

.u-lightbox__trigger--above {
  position: absolute;
  z-index: 1;
  bottom: 0.5rem;
  right: 0.5rem;
}
@media (min-width: 1024px) {
  .u-lightbox__trigger--above {
    bottom: 1rem;
    right: 1rem;
  }
}

/* ==========================================================================
   PADDING
   ========================================================================== */
.is-paddingless--top {
  padding-top: 0;
}

@media (max-width: 1023.98px) {
  .is-paddingless--top-mobile {
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .is-paddingless--top-desktop {
    padding-top: 0;
  }
}
.is-paddingless--bottom {
  padding-bottom: 0;
}

@media (max-width: 1023.98px) {
  .is-paddingless--bottom-mobile {
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .is-paddingless--bottom-desktop {
    padding-bottom: 0;
  }
}
.is-paddingless--left {
  padding-left: 0;
}

@media (max-width: 1023.98px) {
  .is-paddingless--left-mobile {
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .is-paddingless--left-desktop {
    padding-left: 0;
  }
}
.is-paddingless--right {
  padding-right: 0;
}

@media (max-width: 1023.98px) {
  .is-paddingless--right-mobile {
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .is-paddingless--right-desktop {
    padding-right: 0;
  }
}
/* ==========================================================================
   SPACING
   ========================================================================== */
.u-space--xl-top {
  padding-top: 48px;
}
@media screen and (min-width: 375px) {
  .u-space--xl-top {
    padding-top: calc(48px + 48 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .u-space--xl-top {
    padding-top: 96px;
  }
}

@media (max-width: 1023.98px) {
  .u-space--xl-top-mobile {
    padding-top: 48px;
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 375px) {
  .u-space--xl-top-mobile {
    padding-top: calc(48px + 48 * (100vw - 375px) / 1065);
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 1440px) {
  .u-space--xl-top-mobile {
    padding-top: 96px;
  }
}
.u-space--xl-bottom {
  padding-bottom: 48px;
}
@media screen and (min-width: 375px) {
  .u-space--xl-bottom {
    padding-bottom: calc(48px + 48 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .u-space--xl-bottom {
    padding-bottom: 96px;
  }
}

@media (max-width: 1023.98px) {
  .u-space--xl-bottom-mobile {
    padding-bottom: 48px;
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 375px) {
  .u-space--xl-bottom-mobile {
    padding-bottom: calc(48px + 48 * (100vw - 375px) / 1065);
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 1440px) {
  .u-space--xl-bottom-mobile {
    padding-bottom: 96px;
  }
}
.u-space--l-top {
  padding-top: 32px;
}
@media screen and (min-width: 375px) {
  .u-space--l-top {
    padding-top: calc(32px + 32 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .u-space--l-top {
    padding-top: 64px;
  }
}

@media (max-width: 1023.98px) {
  .u-space--l-top-mobile {
    padding-top: 32px;
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 375px) {
  .u-space--l-top-mobile {
    padding-top: calc(32px + 32 * (100vw - 375px) / 1065);
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 1440px) {
  .u-space--l-top-mobile {
    padding-top: 64px;
  }
}
.u-space--l-bottom {
  padding-bottom: 32px;
}
@media screen and (min-width: 375px) {
  .u-space--l-bottom {
    padding-bottom: calc(32px + 32 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .u-space--l-bottom {
    padding-bottom: 64px;
  }
}

@media (max-width: 1023.98px) {
  .u-space--l-bottom-mobile {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 375px) {
  .u-space--l-bottom-mobile {
    padding-bottom: calc(32px + 32 * (100vw - 375px) / 1065);
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 1440px) {
  .u-space--l-bottom-mobile {
    padding-bottom: 64px;
  }
}
.u-space--m-top {
  padding-top: 24px;
}
@media screen and (min-width: 375px) {
  .u-space--m-top {
    padding-top: calc(24px + 24 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .u-space--m-top {
    padding-top: 48px;
  }
}

@media (max-width: 1023.98px) {
  .u-space--m-top-mobile {
    padding-top: 24px;
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 375px) {
  .u-space--m-top-mobile {
    padding-top: calc(24px + 24 * (100vw - 375px) / 1065);
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 1440px) {
  .u-space--m-top-mobile {
    padding-top: 48px;
  }
}
.u-space--m-bottom {
  padding-bottom: 24px;
}
@media screen and (min-width: 375px) {
  .u-space--m-bottom {
    padding-bottom: calc(24px + 24 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .u-space--m-bottom {
    padding-bottom: 48px;
  }
}

@media (max-width: 1023.98px) {
  .u-space--m-bottom-mobile {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 375px) {
  .u-space--m-bottom-mobile {
    padding-bottom: calc(24px + 24 * (100vw - 375px) / 1065);
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 1440px) {
  .u-space--m-bottom-mobile {
    padding-bottom: 48px;
  }
}
.u-space--s-top {
  padding-top: 16px;
}
@media screen and (min-width: 375px) {
  .u-space--s-top {
    padding-top: calc(16px + 16 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .u-space--s-top {
    padding-top: 32px;
  }
}

@media (max-width: 1023.98px) {
  .u-space--s-top-mobile {
    padding-top: 16px;
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 375px) {
  .u-space--s-top-mobile {
    padding-top: calc(16px + 16 * (100vw - 375px) / 1065);
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 1440px) {
  .u-space--s-top-mobile {
    padding-top: 32px;
  }
}
.u-space--s-bottom {
  padding-bottom: 16px;
}
@media screen and (min-width: 375px) {
  .u-space--s-bottom {
    padding-bottom: calc(16px + 16 * (100vw - 375px) / 1065);
  }
}
@media screen and (min-width: 1440px) {
  .u-space--s-bottom {
    padding-bottom: 32px;
  }
}

@media (max-width: 1023.98px) {
  .u-space--s-bottom-mobile {
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 375px) {
  .u-space--s-bottom-mobile {
    padding-bottom: calc(16px + 16 * (100vw - 375px) / 1065);
  }
}
@media screen and (max-width: 1023.98px) and (min-width: 1440px) {
  .u-space--s-bottom-mobile {
    padding-bottom: 32px;
  }
}
/* ==========================================================================
   TOOLTIP
   ========================================================================== */
.u-tooltip__content {
  display: none;
  max-width: 60ch;
}

.u-tooltip__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #e6ffeb;
  border-radius: 50%;
  margin-left: 0.5rem;
}
.is-disabled .u-tooltip__icon-wrap, [disabled] .u-tooltip__icon-wrap {
  background-color: #ebe9e6;
}
.c-btn--pill-small .u-tooltip__icon-wrap {
  width: 1rem;
  height: 1rem;
  margin-left: 0.375rem;
}
@media (min-width: 1024px) {
  .c-btn--pill-small .u-tooltip__icon-wrap {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.u-tooltip__icon {
  position: relative;
  width: 0.375rem;
  height: 0.75rem;
}
.is-disabled .u-tooltip__icon, [disabled] .u-tooltip__icon {
  fill: #ffffff;
}
.c-btn--pill-small .u-tooltip__icon {
  width: 0.25rem;
  height: 0.5rem;
}
@media (min-width: 1024px) {
  .u-tooltip__icon {
    width: 0.5rem;
    height: 1rem;
  }
  .c-btn--pill-small .u-tooltip__icon {
    width: 0.375rem;
    height: 0.75rem;
  }
}

.tippy-box[data-theme~=vowo] {
  padding: 0.625rem;
  color: #38ffaf;
  background-color: #e6ffeb;
}
.tippy-box[data-theme~=vowo][data-placement^=top] > .tippy-arrow::before {
  border-top-color: #e6ffeb;
}
.tippy-box[data-theme~=vowo][data-placement^=bottom] > .tippy-arrow::before {
  border-bottom-color: #e6ffeb;
}
.tippy-box[data-theme~=vowo][data-placement^=left] > .tippy-arrow::before {
  border-left-color: #e6ffeb;
}
.tippy-box[data-theme~=vowo][data-placement^=right] > .tippy-arrow::before {
  border-right-color: #e6ffeb;
}

.tippy-box[data-theme~=vowo-dark] {
  padding: 0.625rem;
  color: #ffffff;
}

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