@charset "UTF-8";
/******************************************************************
Site Name: mpag.com
Author: Yacine Belarbi @ studioyacine.ch

Stylesheet: Main Stylesheet

******************************************************************/
/*********************
IMPORTING PLUGINS
*********************/
@keyframes plyr-progress {
  to {
    background-position: 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;
  direction: ltr;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
}

.plyr video,
.plyr audio {
  border-radius: inherit;
  height: auto;
  vertical-align: middle;
  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: #4f5b5f;
  border-radius: 2px;
  color: #fff;
  font-size: 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;
  color: #fff;
  display: none;
  font-size: 14px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  transform: translateY(-40px);
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions span {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  box-decoration-break: clone;
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__captions span div {
  display: inline;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 16px;
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
  }
}

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

.plyr--hide-controls .plyr__captions {
  transform: translateY(-15px);
}

.plyr__control {
  background: transparent;
  border: 0;
  border-radius: 3px;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  pointer-events: none;
  width: 18px;
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 3px rgba(26, 175, 255, 0.35);
  outline: 0;
}

.plyr__control[aria-pressed='false'] .icon--pressed,
.plyr__control[aria-pressed='true'] .icon--not-pressed,
.plyr__control[aria-pressed='false'] .label--pressed,
.plyr__control[aria-pressed='true'] .label--not-pressed {
  display: none;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded='true'] {
  background: #1aafff;
  color: #fff;
}

.plyr__control--overlaid {
  background: rgba(26, 175, 255, 0.8);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: #fff;
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.plyr__control--overlaid svg {
  height: 20px;
  left: 2px;
  position: relative;
  width: 20px;
}

.plyr__control--overlaid:hover, .plyr__control--overlaid:focus {
  background: #1aafff;
}

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

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

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

.plyr__controls {
  align-items: center;
  display: flex;
  text-align: center;
}

.plyr__controls > .plyr__control,
.plyr__controls .plyr__progress,
.plyr__controls .plyr__time,
.plyr__controls .plyr__menu {
  margin-left: 5px;
}

.plyr__controls > .plyr__control:first-child,
.plyr__controls > .plyr__control:first-child + [data-plyr='pause'],
.plyr__controls .plyr__progress:first-child,
.plyr__controls .plyr__progress:first-child + [data-plyr='pause'],
.plyr__controls .plyr__time:first-child,
.plyr__controls .plyr__time:first-child + [data-plyr='pause'],
.plyr__controls .plyr__menu:first-child,
.plyr__controls .plyr__menu:first-child + [data-plyr='pause'] {
  margin-left: 0;
}

.plyr__controls .plyr__volume {
  margin-left: 5px;
}

@media (min-width: 480px) {
  .plyr__controls > .plyr__control,
  .plyr__controls .plyr__progress,
  .plyr__controls .plyr__time,
  .plyr__controls .plyr__menu {
    margin-left: 10px;
  }
  .plyr__controls > .plyr__control + .plyr__control,
  .plyr__controls .plyr__menu + .plyr__control,
  .plyr__controls > .plyr__control + .plyr__menu {
    margin-left: 5px;
  }
}

.plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 35px 10px 10px;
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 2;
}

.plyr--video .plyr__controls .plyr__control svg {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

.plyr--video .plyr__controls .plyr__control.plyr__tab-focus, .plyr--video .plyr__controls .plyr__control:hover, .plyr--video .plyr__controls .plyr__control[aria-expanded='true'] {
  background: #1aafff;
  color: #fff;
}

.plyr--audio .plyr__controls {
  background: #fff;
  border-radius: inherit;
  color: #4f5b5f;
  padding: 10px;
}

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

.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__video-embed {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.plyr__video-embed iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  user-select: none;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed iframe {
  pointer-events: none;
}

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

.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: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4f5b5f;
  font-size: 16px;
  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: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  content: '';
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0;
}

.plyr__menu__container ul {
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 7px;
}

.plyr__menu__container ul li {
  margin-top: 2px;
}

.plyr__menu__container ul li:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4f5b5f;
  display: flex;
  font-size: 14px;
  padding: 4px 14px;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: rgba(79, 91, 95, 0.8);
  right: 5px;
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 500;
  margin: 7px;
  margin-bottom: 3px;
  padding-left: 28px;
  position: relative;
  width: calc(100% - 14px);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: rgba(79, 91, 95, 0.8);
  left: 7px;
}

.plyr__menu__container .plyr__control--back::before {
  background: #b7c5cd;
  box-shadow: 0 1px 0 #fff;
  content: '';
  height: 1px;
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container label.plyr__control {
  padding-left: 7px;
}

.plyr__menu__container label.plyr__control input[type='radio'] + span {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container label.plyr__control input[type='radio'] + span::after {
  background: #fff;
  border-radius: 100%;
  content: '';
  height: 6px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 5px;
  transform: scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container label.plyr__control input[type='radio']:checked + span {
  background: #1aafff;
}

.plyr__menu__container label.plyr__control input[type='radio']:checked + span::after {
  opacity: 1;
  transform: scale(1);
}

.plyr__menu__container label.plyr__control input[type='radio']:focus + span {
  box-shadow: 0 0 0 3px rgba(26, 175, 255, 0.35);
  outline: 0;
}

.plyr__menu__container label.plyr__control.plyr__tab-focus input[type='radio'] + span,
.plyr__menu__container label.plyr__control:hover input[type='radio'] + span {
  background: rgba(0, 0, 0, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -7px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none;
}

.plyr__progress {
  display: flex;
  flex: 1;
  position: relative;
}

.plyr__progress input[type='range'] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: 14px;
  left: 0;
}

.plyr__progress--buffer {
  -webkit-appearance: none;
  /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: 6px;
  left: 0;
  margin: -3px 0 0;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}

.plyr__progress--buffer::-webkit-progress-bar {
  background: transparent;
  transition: width 0.2s ease;
}

.plyr__progress--buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 6px;
}

.plyr__progress--buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 6px;
  transition: width 0.2s ease;
}

.plyr__progress--buffer::-ms-fill {
  border-radius: 100px;
  transition: width 0.2s ease;
}

.plyr--video .plyr__progress--buffer {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.25);
}

.plyr--audio .plyr__progress--buffer {
  color: rgba(183, 197, 205, 0.66);
}

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

.plyr--video.plyr--loading .plyr__progress--buffer {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress--buffer {
  background-color: rgba(183, 197, 205, 0.66);
}

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

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

.plyr--full-ui input[type='range'] {
  -webkit-appearance: none;
  /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 28px;
  color: #1aafff;
  display: block;
  height: 20px;
  margin: 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: 3px;
  height: 6px;
  transition: all 0.3s ease;
  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: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
  box-sizing: border-box;
  height: 14px;
  position: relative;
  transition: all 0.2s ease;
  width: 14px;
  -webkit-appearance: none;
  /* stylelint-disable-line */
  margin-top: -4px;
}

.plyr--full-ui input[type='range']::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: 3px;
  height: 6px;
  transition: all 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type='range']::-moz-range-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
  box-sizing: border-box;
  height: 14px;
  position: relative;
  transition: all 0.2s ease;
  width: 14px;
}

.plyr--full-ui input[type='range']::-moz-range-progress {
  background: currentColor;
  border-radius: 3px;
  height: 6px;
}

.plyr--full-ui input[type='range']::-ms-track {
  background: transparent;
  border: 0;
  border-radius: 3px;
  height: 6px;
  transition: all 0.3s ease;
  user-select: none;
  color: transparent;
}

.plyr--full-ui input[type='range']::-ms-fill-upper {
  background: transparent;
  border: 0;
  border-radius: 3px;
  height: 6px;
  transition: all 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type='range']::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: 3px;
  height: 6px;
  transition: all 0.3s ease;
  user-select: none;
  background: currentColor;
}

.plyr--full-ui input[type='range']::-ms-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2);
  box-sizing: border-box;
  height: 14px;
  position: relative;
  transition: all 0.2s ease;
  width: 14px;
  margin-top: 0;
}

.plyr--full-ui input[type='range']::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type='range']:focus {
  outline: 0;
}

.plyr--full-ui input[type='range']::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type='range'].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 3px rgba(26, 175, 255, 0.35);
  outline: 0;
}

.plyr--full-ui input[type='range'].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 3px rgba(26, 175, 255, 0.35);
  outline: 0;
}

.plyr--full-ui input[type='range'].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 3px rgba(26, 175, 255, 0.35);
  outline: 0;
}

.plyr--full-ui.plyr--video input[type='range']::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type='range']::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type='range']::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type='range']:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type='range']:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type='range']:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--audio input[type='range']::-webkit-slider-runnable-track {
  background-color: rgba(183, 197, 205, 0.66);
}

.plyr--full-ui.plyr--audio input[type='range']::-moz-range-track {
  background-color: rgba(183, 197, 205, 0.66);
}

.plyr--full-ui.plyr--audio input[type='range']::-ms-track {
  background-color: rgba(183, 197, 205, 0.66);
}

.plyr--full-ui.plyr--audio input[type='range']:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type='range']:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type='range']:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(47, 52, 61, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr__time {
  font-size: 14px;
}

.plyr__time + .plyr__time::before {
  content: '\2044';
  margin-right: 10px;
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

.plyr--video .plyr__time {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4f5b5f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  padding: 5px 7.5px;
  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: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: '';
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control.plyr__tab-focus .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: 16px;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  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: 16px;
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child.plyr__tab-focus .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.plyr__tab-focus .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.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  transform: translate(0, 0) scale(1);
}

.plyr--video {
  overflow: hidden;
}

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

.plyr__video-wrapper {
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__volume {
  flex: 1;
  position: relative;
}

.plyr__volume input[type='range'] {
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .plyr__volume {
    max-width: 50px;
  }
}

@media (min-width: 768px) {
  .plyr__volume {
    max-width: 80px;
  }
}

.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr--is-ios.plyr--vimeo [data-plyr='mute'] {
  display: none !important;
}

.plyr--has-error {
  pointer-events: none;
}

.plyr--has-error::after {
  align-items: center;
  background: black;
  color: #fff;
  content: attr(data-plyr-error);
  display: flex;
  font-size: 16px;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  text-align: center;
  text-shadow: 0 1px 1px black;
  top: 0;
  width: 100%;
  z-index: 10;
}

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

.plyr:fullscreen video {
  height: 100%;
}

.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:fullscreen .plyr__video-embed {
  overflow: visible;
}

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
  }
}

/* stylelint-disable-next-line */
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:-webkit-full-screen .plyr__video-embed {
  overflow: visible;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
}

/* stylelint-disable-next-line */
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-moz-full-screen video {
  height: 100%;
}

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:-moz-full-screen .plyr__video-embed {
  overflow: visible;
}

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
  }
}

/* stylelint-disable-next-line */
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr:-ms-fullscreen .plyr__video-embed {
  overflow: visible;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 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__video-wrapper {
  height: 100%;
  width: 100%;
}

.plyr--fullscreen-fallback .plyr__video-embed {
  overflow: visible;
}

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}

.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: 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: rgba(47, 52, 61, 0.8);
  border-radius: 2px;
  bottom: 10px;
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  z-index: 3;
}

.plyr__ads::after:empty {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 6px;
  left: 0;
  margin: -3px 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}

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

/*********************
IMPORTING BASE
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold;
}

small strong,
small b {
  font-weight: 400;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none;
}

small, .small {
  font-size: 85%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix, .cf {
  zoom: 1;
}

.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}

.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name: mpag.com
Author: Yacine Belarbi @ studioyacine.ch

Stylesheet: Variables

******************************************************************/
/******************************************************************
Site Name: mpag.com
Author: Yacine Belarbi @ studioyacine.ch

Stylesheet: Settings

******************************************************************/
/******************************************************************
Site Name: mpag.com
Author: Yacine Belarbi @ studioyacine.ch

Stylesheet: Fonts

******************************************************************/
/******************************************************************
Site Name: mpag.com
Author: Yacine Belarbi @ studioyacine.ch

Stylesheet: Mixins Stylesheet

******************************************************************/
.text-shadow {
  text-shadow: -2px -2px white, -2px 2px white, 2px -2px white, 2px 2px white;
}

.underline {
  background-size: 1px 1em;
  box-shadow: inset 0 -0.175em white, inset 0 -0.2em #000;
  display: inline;
}

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
CLEARFIX
*********************/
/******************************************************************
Site Name: mpag.com
Author: Yacine Belarbi @ studioyacine.ch

Stylesheet: Typography

******************************************************************/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/******************************************************************
H1, H2, H3, H4, H5, H6 STYLES
******************************************************************/
h1, .h1, .BlockContent .BlockQuote p, .BlockContent .HeroText--title, h2, .section--homepage-teasers__subtitle, .h2, h3, .h3, .BlockContent .HeroText--text, h4, .h4, h5, .h5, .BlockContent .IconList--title {
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizelegibility;
  font-weight: 400;
  color: #fff;
  margin-top: 0;
  /*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*/
  /* removing text decoration from all headline links */
}

.wf-loading h1, .wf-loading .h1, .wf-loading .BlockContent .BlockQuote p, .BlockContent .BlockQuote .wf-loading p, .wf-loading .BlockContent .HeroText--title, .BlockContent .wf-loading .HeroText--title, .wf-loading h2, .wf-loading .section--homepage-teasers__subtitle, .wf-loading .h2, .wf-loading h3, .wf-loading .h3, .wf-loading .BlockContent .HeroText--text, .BlockContent .wf-loading .HeroText--text, .wf-loading h4, .wf-loading .h4, .wf-loading h5, .wf-loading .h5, .wf-loading .BlockContent .IconList--title, .BlockContent .wf-loading .IconList--title {
  visibility: hidden;
}

h1, .h1, .BlockContent .BlockQuote p, .BlockContent .HeroText--title {
  font-size: 42px;
  line-height: 1;
}

@media (min-width: 400px) and (max-width: 1200px) {
  h1, .h1, .BlockContent .BlockQuote p, .BlockContent .HeroText--title {
    font-size: calc( 42px + 79 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  h1, .h1, .BlockContent .BlockQuote p, .BlockContent .HeroText--title {
    font-size: 121px;
  }
}

@media (min-width: 768px) {
  h1, .h1, .BlockContent .BlockQuote p, .BlockContent .HeroText--title {
    font-size: 35px;
  }
}

@media (min-width: 768px) and (min-width: 400px) and (max-width: 1200px) {
  h1, .h1, .BlockContent .BlockQuote p, .BlockContent .HeroText--title {
    font-size: calc( 35px + 55 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  h1, .h1, .BlockContent .BlockQuote p, .BlockContent .HeroText--title {
    font-size: 90px;
  }
}

h2, .section--homepage-teasers__subtitle, .h2 {
  font-size: 27px;
  margin-bottom: 1em;
}

@media (min-width: 400px) and (max-width: 1200px) {
  h2, .section--homepage-teasers__subtitle, .h2 {
    font-size: calc( 27px + 30 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  h2, .section--homepage-teasers__subtitle, .h2 {
    font-size: 57px;
  }
}

@media (min-width: 768px) {
  h2, .section--homepage-teasers__subtitle, .h2 {
    font-size: 19px;
  }
}

@media (min-width: 768px) and (min-width: 400px) and (max-width: 1200px) {
  h2, .section--homepage-teasers__subtitle, .h2 {
    font-size: calc( 19px + 15 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  h2, .section--homepage-teasers__subtitle, .h2 {
    font-size: 34px;
  }
}

h3, .h3, .BlockContent .HeroText--text {
  font-size: 20px;
  text-transform: uppercase;
}

@media (min-width: 400px) and (max-width: 1200px) {
  h3, .h3, .BlockContent .HeroText--text {
    font-size: calc( 20px + 16 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  h3, .h3, .BlockContent .HeroText--text {
    font-size: 36px;
  }
}

h4, .h4 {
  font-size: 24px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  h4, .h4 {
    font-size: calc( 24px + 25 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 49px;
  }
}

@media (min-width: 768px) {
  h4, .h4 {
    font-size: 18px;
  }
}

@media (min-width: 768px) and (min-width: 400px) and (max-width: 1200px) {
  h4, .h4 {
    font-size: calc( 18px + 13 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  h4, .h4 {
    font-size: 31px;
  }
}

h5, .h5, .BlockContent .IconList--title {
  font-size: 17px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  h5, .h5, .BlockContent .IconList--title {
    font-size: calc( 17px + 10 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  h5, .h5, .BlockContent .IconList--title {
    font-size: 27px;
  }
}

h6, .h6 {
  font-size: 14px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  h6, .h6 {
    font-size: calc( 14px + 6 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  h6, .h6 {
    font-size: 20px;
  }
}

/* Let's make sure all's aligned */
hr, .hr {
  border: 1px solid;
  margin: -1px 0;
}

sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

b,
strong {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #fff;
  /* on hover */
  /* on click */
  /* mobile tap color */
}

a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #e8e8e8;
}

a:link, a:visited:link {
  /*
		this highlights links on iPhones/iPads.
		so it basically works like the :hover selector
		for mobile devices.
		*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
Site Name: mpag.com
Author: Yacine Belarbi @ studioyacine.ch

Stylesheet: Sass Functions

******************************************************************/
/******************************************************************************/
/******************************************************************************/
/* Site specific base  */
html:before {
  content: "desktop";
  display: none;
  /* Prevent from displaying. */
}

@media (max-width: 1280px) {
  html:before {
    content: "tablet";
  }
}

@media (max-width: 768px) {
  html:before {
    content: "mobile";
  }
}

a {
  text-decoration: none;
}

.entry-content a {
  text-decoration: underline;
  font-weight: 500;
}

.entry-content a:hover {
  text-decoration: none;
  opacity: 1;
}

a:hover {
  text-decoration: underline;
}

iframe {
  max-width: 100%;
}

hr {
  width: 100%;
  height: 1px;
  border: none;
  background: #333;
  margin-bottom: 3rem;
}

p,
ol,
ul {
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1.5em;
}

ul,
ol {
  padding-left: 1.1em;
  line-height: 1.6;
  list-style-type: square;
}

ul.unstyled,
ol.unstyled {
  list-style-type: none;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/******************************************************************************/
/******************************************************************************/
/* BASE STYLING */
.lead-text {
  font-size: 29px;
  line-height: 1.2;
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: block;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .lead-text {
    font-size: calc( 29px + 37 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .lead-text {
    font-size: 66px;
  }
}

@media (min-width: 768px) {
  .lead-text {
    font-size: 22px;
  }
}

@media (min-width: 768px) and (min-width: 400px) and (max-width: 1200px) {
  .lead-text {
    font-size: calc( 22px + 20 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .lead-text {
    font-size: 42px;
  }
}

.lead-text a {
  font-weight: 300;
}

.entry-content blockquote {
  font-size: 24px;
  letter-spacing: -0.4px;
  font-weight: 600;
  margin: 0 0 0 0;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .entry-content blockquote {
    font-size: calc( 24px + 25 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .entry-content blockquote {
    font-size: 49px;
  }
}

@media (min-width: 1280px) {
  .entry-content blockquote {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    box-sizing: content-box;
    margin-right: -16.94915%;
    margin-left: -8.47458%;
    padding-right: 16.94915%;
    padding-left: 8.47458%;
    padding-right: 0;
    font-size: 18px;
  }
}

@media (min-width: 1280px) and (min-width: 400px) and (max-width: 1200px) {
  .entry-content blockquote {
    font-size: calc( 18px + 12 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1280px) and (min-width: 1200px) {
  .entry-content blockquote {
    font-size: 30px;
  }
}

.entry-content blockquote p {
  line-height: 1.3;
}

.entry-content blockquote > *:last-child {
  margin: 0;
}

.entry-content blockquote > *:only-child {
  margin-bottom: 1em;
}

.entry-content .wp-caption {
  width: 100% !important;
  margin-bottom: 2em;
}

.entry-content .wp-caption .wp-caption-text {
  font-style: italic;
  font-size: 12px;
  font-family: Times New Roman, Times, serif;
  margin: 0;
  color: #757575;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .entry-content .wp-caption .wp-caption-text {
    font-size: calc( 12px + 4 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .entry-content .wp-caption .wp-caption-text {
    font-size: 16px;
  }
}

.entry-content .wp-caption img {
  width: 100%;
}

.entry-content .button {
  background: #282828;
}

.entry-content .button:after {
  vertical-align: middle;
}

/* ==========================================
Single-colored icons can be modified like so:
.icon-name {
  font-size: 32px;
  color: red;
}
========================================== */
#wp-admin-bar-new-content,
#wp-admin-bar-comments,
#wp-admin-bar-wp-logo,
#wp-admin-bar-customize,
#wp-admin-bar-updates {
  display: none;
}

/*********************
IMPORTING MODULES
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.entry-content .button, .blue-btn, .gform_footer input, .header__mobile-nav__links li.menu-item--button a, .section--homepage-about__lead .button, .section--homepage-teasers__button, .aside--newsletter-box a, .section--capability-cta__links a, .section--about-team-member__link, .BlockContent .HeroText--link {
  display: inline-block;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-weight: normal;
  padding: 1.4em 2em;
  border-radius: 0px;
  border: 1px solid #000;
  cursor: pointer;
  letter-spacing: 0.3px;
  font-size: 11px;
  text-align: center;
  width: auto;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .entry-content .button, .blue-btn, .gform_footer input, .header__mobile-nav__links li.menu-item--button a, .section--homepage-about__lead .button, .section--homepage-teasers__button, .aside--newsletter-box a, .section--capability-cta__links a, .section--about-team-member__link, .BlockContent .HeroText--link {
    font-size: calc( 11px + 2 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .entry-content .button, .blue-btn, .gform_footer input, .header__mobile-nav__links li.menu-item--button a, .section--homepage-about__lead .button, .section--homepage-teasers__button, .aside--newsletter-box a, .section--capability-cta__links a, .section--about-team-member__link, .BlockContent .HeroText--link {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .entry-content .button, .blue-btn, .gform_footer input, .header__mobile-nav__links li.menu-item--button a, .section--homepage-about__lead .button, .section--homepage-teasers__button, .aside--newsletter-box a, .section--capability-cta__links a, .section--about-team-member__link, .BlockContent .HeroText--link {
    padding: 1.4em 3em;
  }
}

.entry-content .button:after, .blue-btn:after, .gform_footer input:after, .header__mobile-nav__links li.menu-item--button a:after, .section--homepage-about__lead .button:after, .section--homepage-teasers__button:after, .aside--newsletter-box a:after, .section--capability-cta__links a:after, .section--about-team-member__link:after, .BlockContent .HeroText--link:after {
  content: "→";
  margin-left: 5px;
  vertical-align: text-bottom;
  display: inline-block;
  transition: all 0.3s;
}

.entry-content .button:hover, .blue-btn:hover, .gform_footer input:hover, .header__mobile-nav__links li.menu-item--button a:hover, .section--homepage-about__lead .button:hover, .section--homepage-teasers__button:hover, .aside--newsletter-box a:hover, .section--capability-cta__links a:hover, .section--about-team-member__link:hover, .BlockContent .HeroText--link:hover, .entry-content .button:focus, .blue-btn:focus, .gform_footer input:focus, .header__mobile-nav__links li.menu-item--button a:focus, .section--homepage-about__lead .button:focus, .section--homepage-teasers__button:focus, .aside--newsletter-box a:focus, .section--capability-cta__links a:focus, .section--about-team-member__link:focus, .BlockContent .HeroText--link:focus {
  text-decoration: none;
  outline: none;
}

.entry-content .button:hover:after, .blue-btn:hover:after, .gform_footer input:hover:after, .header__mobile-nav__links li.menu-item--button a:hover:after, .section--homepage-about__lead .button:hover:after, .section--homepage-teasers__button:hover:after, .aside--newsletter-box a:hover:after, .section--capability-cta__links a:hover:after, .section--about-team-member__link:hover:after, .BlockContent .HeroText--link:hover:after {
  transform: translateX(5px);
}

.entry-content .button:active, .blue-btn:active, .gform_footer input:active, .header__mobile-nav__links li.menu-item--button a:active, .section--homepage-about__lead .button:active, .section--homepage-teasers__button:active, .aside--newsletter-box a:active, .section--capability-cta__links a:active, .section--about-team-member__link:active, .BlockContent .HeroText--link:active {
  top: 1px;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #2980b9;
}

.blue-btn:hover, .blue-btn:focus {
  background-color: #2574a8;
}

.blue-btn:active {
  background-color: #2472a4;
}

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 5px 12px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 300;
  border-radius: 0px;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #191919;
  width: 100%;
  background-color: none;
  background: #171717;
  border: 1px solid #2e2e2e;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
  letter-spacing: 1px;
  font-size: 16px;
}

@media (min-width: 768px) {
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  select,
  textarea,
  .field {
    font-size: 1em;
  }
}

input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  background-color: #2b2b2b;
  outline: none;
}

input[type="text"].error, input[type="text"].is-invalid,
input[type="password"].error,
input[type="password"].is-invalid,
input[type="datetime"].error,
input[type="datetime"].is-invalid,
input[type="datetime-local"].error,
input[type="datetime-local"].is-invalid,
input[type="date"].error,
input[type="date"].is-invalid,
input[type="month"].error,
input[type="month"].is-invalid,
input[type="time"].error,
input[type="time"].is-invalid,
input[type="week"].error,
input[type="week"].is-invalid,
input[type="number"].error,
input[type="number"].is-invalid,
input[type="email"].error,
input[type="email"].is-invalid,
input[type="url"].error,
input[type="url"].is-invalid,
input[type="search"].error,
input[type="search"].is-invalid,
input[type="tel"].error,
input[type="tel"].is-invalid,
input[type="color"].error,
input[type="color"].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: #fbe3e4;
}

input[type="text"].success, input[type="text"].is-valid,
input[type="password"].success,
input[type="password"].is-valid,
input[type="datetime"].success,
input[type="datetime"].is-valid,
input[type="datetime-local"].success,
input[type="datetime-local"].is-valid,
input[type="date"].success,
input[type="date"].is-valid,
input[type="month"].success,
input[type="month"].is-valid,
input[type="time"].success,
input[type="time"].is-valid,
input[type="week"].success,
input[type="week"].is-valid,
input[type="number"].success,
input[type="number"].is-valid,
input[type="email"].success,
input[type="email"].is-valid,
input[type="url"].success,
input[type="url"].is-valid,
input[type="search"].success,
input[type="search"].is-valid,
input[type="tel"].success,
input[type="tel"].is-valid,
input[type="color"].success,
input[type="color"].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  background-color: #fff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: #e6efc2;
}

input[type="text"][disabled], input[type="text"].is-disabled,
input[type="password"][disabled],
input[type="password"].is-disabled,
input[type="datetime"][disabled],
input[type="datetime"].is-disabled,
input[type="datetime-local"][disabled],
input[type="datetime-local"].is-disabled,
input[type="date"][disabled],
input[type="date"].is-disabled,
input[type="month"][disabled],
input[type="month"].is-disabled,
input[type="time"][disabled],
input[type="time"].is-disabled,
input[type="week"][disabled],
input[type="week"].is-disabled,
input[type="number"][disabled],
input[type="number"].is-disabled,
input[type="email"][disabled],
input[type="email"].is-disabled,
input[type="url"][disabled],
input[type="url"].is-disabled,
input[type="search"][disabled],
input[type="search"].is-disabled,
input[type="tel"][disabled],
input[type="tel"].is-disabled,
input[type="color"][disabled],
input[type="color"].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #cfcfcf;
  opacity: 0.6;
}

input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
input[type="password"][disabled]:focus,
input[type="password"][disabled]:active,
input[type="password"].is-disabled:focus,
input[type="password"].is-disabled:active,
input[type="datetime"][disabled]:focus,
input[type="datetime"][disabled]:active,
input[type="datetime"].is-disabled:focus,
input[type="datetime"].is-disabled:active,
input[type="datetime-local"][disabled]:focus,
input[type="datetime-local"][disabled]:active,
input[type="datetime-local"].is-disabled:focus,
input[type="datetime-local"].is-disabled:active,
input[type="date"][disabled]:focus,
input[type="date"][disabled]:active,
input[type="date"].is-disabled:focus,
input[type="date"].is-disabled:active,
input[type="month"][disabled]:focus,
input[type="month"][disabled]:active,
input[type="month"].is-disabled:focus,
input[type="month"].is-disabled:active,
input[type="time"][disabled]:focus,
input[type="time"][disabled]:active,
input[type="time"].is-disabled:focus,
input[type="time"].is-disabled:active,
input[type="week"][disabled]:focus,
input[type="week"][disabled]:active,
input[type="week"].is-disabled:focus,
input[type="week"].is-disabled:active,
input[type="number"][disabled]:focus,
input[type="number"][disabled]:active,
input[type="number"].is-disabled:focus,
input[type="number"].is-disabled:active,
input[type="email"][disabled]:focus,
input[type="email"][disabled]:active,
input[type="email"].is-disabled:focus,
input[type="email"].is-disabled:active,
input[type="url"][disabled]:focus,
input[type="url"][disabled]:active,
input[type="url"].is-disabled:focus,
input[type="url"].is-disabled:active,
input[type="search"][disabled]:focus,
input[type="search"][disabled]:active,
input[type="search"].is-disabled:focus,
input[type="search"].is-disabled:active,
input[type="tel"][disabled]:focus,
input[type="tel"][disabled]:active,
input[type="tel"].is-disabled:focus,
input[type="tel"].is-disabled:active,
input[type="color"][disabled]:focus,
input[type="color"][disabled]:active,
input[type="color"].is-disabled:focus,
input[type="color"].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: #d5edf8;
}

input[type="password"] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

.gform_wrapper {
  margin-bottom: 3rem;
}

.gform_wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.gform_wrapper .gform_title {
  font-size: 14px;
  text-transform: inherit;
  margin: 0;
  display: none;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .gform_wrapper .gform_title {
    font-size: calc( 14px + 6 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .gform_wrapper .gform_title {
    font-size: 20px;
  }
}

.gform_wrapper .validation_error {
  background: #d62828;
  padding: 1.23em;
  padding-right: 70px;
}

.gform_wrapper .validation_error h2, .gform_wrapper .validation_error .section--homepage-teasers__subtitle {
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .gform_wrapper .validation_error h2, .gform_wrapper .validation_error .section--homepage-teasers__subtitle {
    font-size: calc( 14px + 6 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .gform_wrapper .validation_error h2, .gform_wrapper .validation_error .section--homepage-teasers__subtitle {
    font-size: 20px;
  }
}

.gform_wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 1em;
}

.gform_wrapper ul .gfield {
  position: relative;
  margin-bottom: 0.5em;
}

.gform_wrapper ul .gfield:after {
  content: "";
  display: table;
  clear: both;
}

.gform_wrapper ul .gfield.gfield_error:after {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  right: 10px;
  top: calc(50% - 15px);
  background: url("../library/images/icon--error.svg") no-repeat;
  background-size: cover;
}

.gform_wrapper ul .gfield.gfield_error .validation_message {
  font-size: 11px;
  width: 77.27273%;
  float: right;
  margin-right: 0;
  color: #fff;
  margin-top: -0.7em;
  font-weight: bold;
  letter-spacing: 0px;
  display: none;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .gform_wrapper ul .gfield.gfield_error .validation_message {
    font-size: calc( 11px + 2 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .gform_wrapper ul .gfield.gfield_error .validation_message {
    font-size: 13px;
  }
}

.gform_wrapper ul .gfield_label {
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  width: 31.81818%;
  float: left;
  margin-right: 2.27273%;
}

.wf-loading .gform_wrapper ul .gfield_label {
  visibility: hidden;
}

@media (min-width: 768px) {
  .gform_wrapper ul .gfield_label {
    width: 20.45455%;
    float: left;
    margin-right: 2.27273%;
  }
}

.gform_wrapper ul .gfield_label .gfield_required {
  color: red;
}

.gform_wrapper ul .ginput_container {
  display: block;
  overflow: hidden;
}

.gfield_description {
  font-size: 12px;
  margin-left: 22.72727%;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .gfield_description {
    font-size: calc( 12px + 3 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .gfield_description {
    font-size: 15px;
  }
}

.gform_footer {
  padding-top: 1em;
}

.gform_footer:after {
  content: "";
  display: table;
  clear: both;
}

.gform_footer input {
  background: none;
  border: 1px solid #2d2d2d;
  float: right;
  padding: 1.4em 4.5em;
}

.cc-window {
  opacity: 1;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

.cc-animate.cc-revoke {
  transition: transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
  transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
  transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-bottom,
.cc-animate.cc-revoke.cc-active.cc-top,
.cc-revoke:hover {
  transform: translateY(0);
}

.cc-grower {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
}

.cc-link,
.cc-revoke:hover {
  text-decoration: underline;
}

.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
}

.cc-window.cc-static {
  position: static;
}

.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cc-revoke {
  padding: 0.5em;
}

.cc-header {
  font-size: 18px;
  font-weight: 700;
}

.cc-btn,
.cc-close,
.cc-link,
.cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: 0.8;
  display: inline-block;
  padding: 0.2em;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active,
.cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-close {
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.6em;
  opacity: 0.9;
  line-height: 0.75;
}

.cc-close:focus,
.cc-close:hover {
  opacity: 1;
}

.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}

.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}

.cc-top {
  top: 1em;
}

.cc-left {
  left: 1em;
}

.cc-right {
  right: 1em;
}

.cc-bottom {
  bottom: 1em;
}

.cc-floating > .cc-link {
  margin-bottom: 1em;
}

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.cc-window.cc-banner {
  -ms-flex-align: center;
  align-items: center;
}

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

.cc-compliance {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.cc-floating .cc-compliance > .cc-btn {
  -ms-flex: 1;
  flex: 1;
}

.cc-btn + .cc-btn {
  margin-left: 0.5em;
}

@media print {
  .cc-revoke,
  .cc-window {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}

@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner,
  .cc-window.cc-floating,
  .cc-window.cc-left,
  .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    -ms-flex-align: unset;
    align-items: unset;
  }
  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}

.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  -ms-flex: none;
  flex: none;
}

.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em 2em 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0.8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}

.plyr {
  transition: 1.2s height;
}

@media (min-width: 768px) {
  .plyr {
    height: 650px;
  }
}

.plyr--stopped {
  filter: grayscale(100%);
  height: 250px;
  position: relative;
}

@media (min-width: 768px) {
  .plyr--stopped {
    height: 550px;
  }
}

.home .plyr--stopped:after {
  content: "";
  background-color: transparent;
  background-image: linear-gradient(to top, #000, transparent);
  height: 55%;
  position: absolute;
  width: 100%;
  opacity: 1;
  z-index: 0;
  bottom: -6px;
}

.plyr--stopped .plyr__video-wrapper {
  opacity: 0.65;
}

.plyr--stopped .plyr__controls {
  opacity: 0;
}

.plyr__control--overlaid {
  padding: 35px;
  background: #2f343d;
}

.plyr__control svg {
  height: 28px;
  width: 28px;
  fill: #fff;
}

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

/*********************
IMPORTING PAGE SPECIFIC STYLES
*********************/
/******************************************************************
Site Name: mpag.com
Author: Yacine Belarbi @ studioyacine.ch

Stylesheet: BASE layout stylesheet

******************************************************************/
html {
  font-size: 14px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  html {
    font-size: calc( 14px + 6 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 20px;
  }
}

html.menuIsOpen {
  overflow: hidden;
}

@media (max-width: 768px) {
  .cc-window {
    transform: scale(0.7);
    transform-origin: calc(100% - 30px) calc(100% - 30px);
  }
}

body {
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  letter-spacing: 0.4px;
  font-weight: 300;
}

body.menuIsOpen {
  overflow: hidden;
}

@media (min-width: 1280px) {
  #main.main-content--offset {
    width: 63.88889%;
    float: right;
    margin-right: 0;
  }
  #main.main-content--offset .entry-content {
    padding-right: 15.25424%;
  }
  #main.main-content--offset .entry-content .lead-text {
    margin-right: -18.64407%;
  }
}

#main.main-content--offset h1 {
  margin: 0 0 0.3em;
}

#main,
.sidebar {
  padding-top: 150px;
}

@media (min-width: 768px) {
  #main,
  .sidebar {
    padding-top: 250px;
  }
}

.wrap, .header .header__solution-nav, .section--homepage-intro, .section--homepage-about, .section--homepage-teasers, .section--homepage-video, .section--homepage-news, .section--capability-wrap, .section--capability-cta, .section--capability-news, .section--team-member {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  position: relative;
}

.wrap:after, .header .header__solution-nav:after, .section--homepage-intro:after, .section--homepage-about:after, .section--homepage-teasers:after, .section--homepage-video:after, .section--homepage-news:after, .section--capability-wrap:after, .section--capability-cta:after, .section--capability-news:after, .section--team-member:after {
  content: " ";
  display: block;
  clear: both;
}

@media (min-width: 1280px) {
  .wrap, .header .header__solution-nav, .section--homepage-intro, .section--homepage-about, .section--homepage-teasers, .section--homepage-video, .section--homepage-news, .section--capability-wrap, .section--capability-cta, .section--capability-news, .section--team-member {
    padding: 0 20px;
  }
}

@media (min-width: 1900px) {
  .wrap, .header .header__solution-nav, .section--homepage-intro, .section--homepage-about, .section--homepage-teasers, .section--homepage-video, .section--homepage-news, .section--capability-wrap, .section--capability-cta, .section--capability-news, .section--team-member {
    padding: 0;
  }
}

.wrap:after, .header .header__solution-nav:after, .section--homepage-intro:after, .section--homepage-about:after, .section--homepage-teasers:after, .section--homepage-video:after, .section--homepage-news:after, .section--capability-wrap:after, .section--capability-cta:after, .section--capability-news:after, .section--team-member:after {
  display: none;
}

.footer {
  float: left;
  width: 100%;
  font-size: 11px;
  color: #fff;
  margin-top: 4rem;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .footer {
    font-size: calc( 11px + 2 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .footer {
    font-size: 13px;
  }
}

.footer span {
  line-height: 1.5;
}

.footer #inner-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 4em;
  padding-bottom: 3em;
}

.footer #inner-footer:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .footer #inner-footer {
    margin: 0 1rem;
    padding: 0;
    padding-top: 4em;
    padding-bottom: 3em;
  }
}

@media (min-width: 768px) {
  .footer #inner-footer .footer-links {
    float: left;
    width: 100%;
    margin-bottom: 1em;
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .footer #inner-footer .footer-newsletter {
    float: left;
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .footer #inner-footer .footer-newsletter {
    width: 38%;
  }
}

.footer #inner-footer .footer-studioyacine {
  padding-top: 1em;
  color: #707070;
  clear: both;
  font-size: 10px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .footer #inner-footer .footer-studioyacine {
    font-size: calc( 10px + 1 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .footer #inner-footer .footer-studioyacine {
    font-size: 11px;
  }
}

.footer #inner-footer .footer-studioyacine a {
  color: #707070;
  text-decoration: underline;
}

.footer #inner-footer .footer-studioyacine a:hover {
  text-decoration: none;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links > li {
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .footer .footer-links > li {
    margin-bottom: 0;
  }
  .footer .footer-links > li:last-child {
    margin-right: 0;
  }
}

.footer .footer-links ul {
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer .footer-links a {
  color: #fff;
}

.footer .footer-newsletter {
  line-height: 1.5;
}

.footer .footer-newsletter .gform_wrapper {
  margin: 0;
}

.footer .footer-newsletter #field_2_2,
.footer .footer-newsletter #field_2_3 {
  transform: scale(0);
  height: 1px;
}

.footer .footer-newsletter span {
  margin-bottom: 1em;
  display: block;
  color: #707070;
}

@media (min-width: 768px) {
  .footer .footer-newsletter span {
    float: left;
    width: 190px;
    margin-bottom: 0;
    margin-right: 2em;
  }
}

@media (min-width: 1280px) {
  .footer .footer-newsletter span {
    width: 180px;
  }
}

.footer .footer-newsletter .gform_confirmation_wrapper {
  display: block;
  overflow: hidden;
  padding: 10px;
  background: #222;
  border: 1px solid #333;
  color: #fff;
}

.footer .footer-newsletter .gform_wrapper {
  display: block;
  overflow: hidden;
  max-width: 250px;
}

@media (min-width: 768px) {
  .footer .footer-newsletter .gform_wrapper {
    max-width: 250px;
  }
}

.footer .footer-newsletter .gform_wrapper input {
  background: #282828;
}

@media (min-width: 768px) {
  .footer .footer-newsletter .gform_wrapper input {
    background: #171717;
  }
}

.footer .footer-newsletter .gform_wrapper a#gf_2 {
  display: block;
  position: relative;
  bottom: 10em;
  visibility: hidden;
}

.footer .footer-newsletter .gform_wrapper ul {
  padding: 0;
}

.footer .footer-newsletter .gform_wrapper label {
  display: none;
}

.footer .footer-newsletter .gform_wrapper .gform_footer {
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
}

.footer .footer-newsletter .gform_wrapper .gform_footer .gform_button.button {
  height: 0;
  opacity: 0;
  visibility: hidden;
  padding: 0;
}

/*******************************************************************************
HEADER
*******************************************************************************/
.header:after {
  content: "";
  display: table;
  clear: both;
}

.header:before {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, left, right);
  background-image: -webkit-linear-gradient(top, #000, transparent);
  background-image: -moz-linear-gradient(top, #000, transparent);
  background-image: -o-linear-gradient(top, #000, transparent);
  background-image: linear-gradient(to bottom, #000, transparent);
  height: 400px;
  position: absolute;
  width: 100%;
  opacity: 0.8;
  z-index: 0;
}

@media (min-width: 768px) {
  .header:before {
    content: "";
  }
}

.header .header__solution-nav {
  padding-top: 1em;
}

@media (min-width: 768px) {
  .header .header__solution-nav {
    padding-top: 4em;
  }
}

.header .header__solution-nav #site-logo {
  display: inline-block;
  outline: none;
  transform: translateX(-20px);
}

@media (min-width: 768px) {
  .header .header__solution-nav #site-logo {
    transform: none;
  }
}

.header .header__solution-nav__menu {
  display: none;
}

@media (min-width: 1024px) {
  .header .header__solution-nav__menu {
    display: flex;
    width: 63.88889%;
    float: right;
    margin-right: 0;
  }
}

#site-logo img {
  width: 140px;
}

@media (min-width: 768px) {
  #site-logo img {
    width: 190px;
    margin-top: -29px;
    margin-left: -25px;
  }
}

/***********************
MOBILE NAV
************************/
.header__burger {
  position: fixed;
  top: 2.5em;
  right: 1em;
  z-index: 3;
  background: none;
  padding: 0;
  border: none;
  color: #fff;
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  outline: none;
}

.wf-loading .header__burger {
  visibility: hidden;
}

@media (min-width: 768px) {
  .header__burger {
    top: 4em;
    right: 1em;
  }
}

@media (min-width: 1900px) {
  .header__burger {
    right: 2em;
  }
}

.header__burger > span {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  vertical-align: top;
  padding: 5px 0;
  display: none;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .header__burger > span {
    font-size: calc( 17px + 10 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .header__burger > span {
    font-size: 27px;
  }
}

@media (min-width: 1280px) {
  .header__burger > span {
    display: none;
  }
}

.header__burger:hover .hamburger .line:nth-child(2) {
  transform: scaleX(1.2);
}

.header__burger .hamburger {
  margin-top: 2px;
  margin-left: 10px;
  display: inline-block;
  transform: scale(0.8);
}

@media (min-width: 768px) {
  .header__burger .hamburger {
    transform: none;
    margin-top: 3px;
  }
}

@media (min-width: 1280px) {
  .header__burger .hamburger {
    margin-top: 5px;
  }
}

.header__burger .hamburger .line {
  width: 20px;
  height: 2px;
  background-color: #ecf0f1;
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header__burger .hamburger:hover {
  cursor: pointer;
}

.menuIsOpen .header__burger .hamburger .line:nth-child(1) {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}

.menuIsOpen .header__burger .hamburger .line:nth-child(3) {
  opacity: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.header__mobile-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #000;
  padding: 1em 1em 4em;
  display: none;
  opacity: 0;
  overflow: hidden;
  justify-content: space-between;
  flex-direction: column;
}

.header__mobile-nav:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 768px) {
  .header__mobile-nav {
    padding-bottom: 2em;
    flex-direction: row;
  }
}

@media (min-width: 1900px) {
  .header__mobile-nav {
    padding: 3em 2em 1.5em;
  }
}

.header__mobile-nav--left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  order: 2;
}

@media (min-width: 768px) {
  .header__mobile-nav--left {
    order: 1;
  }
}

.header__mobile-nav--right {
  flex: 1;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  order: 1;
}

@media (min-width: 768px) {
  .header__mobile-nav--right {
    order: 2;
  }
}

.header__mobile-nav__lang {
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  position: absolute;
  top: 2.5em;
}

@media (min-width: 768px) {
  .header__mobile-nav__lang {
    top: 4em;
  }
}

.header__mobile-nav__address {
  list-style: none;
  padding: 0;
  margin: 3em 0 0em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: left;
  font-size: 11px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .header__mobile-nav__address {
    font-size: calc( 11px + 2 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .header__mobile-nav__address {
    font-size: 13px;
  }
}

@media (min-width: 768px) {
  .header__mobile-nav__address {
    flex-direction: row;
    text-align: left;
  }
}

.header__mobile-nav__address a {
  color: rgba(255, 255, 255, 0.6);
}

.header__mobile-nav__address li {
  color: rgba(255, 255, 255, 0.6);
}

.header__mobile-nav__address li + li {
  margin-left: 3em;
}

@media (min-width: 1280px) {
  .header__mobile-nav__address li + li {
    margin-left: 5em;
  }
}

.header__mobile-nav__links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.header__mobile-nav__links li {
  line-height: 1.5;
  font-size: 17px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .header__mobile-nav__links li {
    font-size: calc( 17px + 10 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .header__mobile-nav__links li {
    font-size: 27px;
  }
}

.header__mobile-nav__links li.menu-item--large + li.menu-item:not(.menu-item--large) {
  margin-top: 1em;
}

.header__mobile-nav__links li.menu-item--large {
  font-size: 35px;
  line-height: 1.2;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .header__mobile-nav__links li.menu-item--large {
    font-size: calc( 35px + 55 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .header__mobile-nav__links li.menu-item--large {
    font-size: 90px;
  }
}

@media (min-width: 768px) {
  .header__mobile-nav__links li.menu-item--large {
    font-size: 26px;
  }
}

@media (min-width: 768px) and (min-width: 400px) and (max-width: 1200px) {
  .header__mobile-nav__links li.menu-item--large {
    font-size: calc( 26px + 29 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .header__mobile-nav__links li.menu-item--large {
    font-size: 55px;
  }
}

.header__mobile-nav__links li.menu-item + li.menu-item--button:not(.menu-item--large) {
  margin-top: 1em;
}

.header__mobile-nav__links li.menu-item--button a {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.header__mobile-nav__links li.menu-item--button a:hover {
  background: #282828;
}

.header__mobile-nav__links li.menu-item--button a:after {
  vertical-align: bottom;
}

.header__mobile-nav__links li.menu-item--button a + .button {
  margin-left: 2em;
}

.header__mobile-nav__links a {
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/***********************
MAIN NAV
************************/
.header__solution-nav__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.header__solution-nav__menu > li {
  transition: transform 0.3s;
}

.header__solution-nav__menu > li:last-child {
  padding: 0;
}

.header__solution-nav__menu > li:hover {
  transform: translateY(-3px);
}

.header__solution-nav__menu > li > a {
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  outline: none;
  display: block;
}

.wf-loading .header__solution-nav__menu > li > a {
  visibility: hidden;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .header__solution-nav__menu > li > a {
    font-size: calc( 15px + 8 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .header__solution-nav__menu > li > a {
    font-size: 23px;
  }
}

.header__solution-nav__menu > li ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__solution-nav__menu li li > a {
  font-size: 11px;
  line-height: 1.5;
  display: block;
  letter-spacing: 0.4px;
  font-weight: 300;
  pointer-events: none;
  max-width: 220px;
  opacity: 0.5;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .header__solution-nav__menu li li > a {
    font-size: calc( 11px + 2 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .header__solution-nav__menu li li > a {
    font-size: 13px;
  }
}

/***********************
SECONDARY NAV
************************/
#menu-secondary-nav {
  padding: 1.5em 0;
  margin: 0;
}

#menu-secondary-nav li {
  display: inline-block;
  padding-left: 1em;
}

#menu-secondary-nav a {
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  opacity: 0.4;
}

@media (min-width: 400px) and (max-width: 1200px) {
  #menu-secondary-nav a {
    font-size: calc( 10px + 1 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  #menu-secondary-nav a {
    font-size: 11px;
  }
}

/*******************************************************************************
HOMEPAGE
*******************************************************************************/
.page-background {
  width: 100%;
  position: absolute;
  top: -5%;
  left: 0;
  z-index: -1;
  will-change: transform;
}

@media (min-width: 768px) {
  .page-background {
    top: -15%;
  }
}

.page-background:before {
  content: "";
  display: block;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 360px;
  background: linear-gradient(0deg, #000 6.96%, rgba(0, 0, 0, 0) 50%);
  z-index: 999;
}

@media (min-width: 768px) {
  .page-background:before {
    height: 860px;
  }
}

.page-background img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}

.section--hero {
  width: 100%;
  min-height: 90vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.section--homepage-intro {
  margin-bottom: 4em;
}

.section--homepage-intro h1 {
  margin: 0;
  text-transform: uppercase;
}

.section--homepage-intro p {
  margin: 0;
  line-height: 1;
}

.section--homepage-intro p em {
  font-style: normal;
  color: #707070;
  transform: skewX(-8deg);
  transform-origin: 0 100%;
  display: inline-block;
}

/***********************
HOMEPAGE ABOUT
************************/
.section--homepage-about {
  margin-bottom: 6em;
}

.section--homepage-about h2, .section--homepage-about .section--homepage-teasers__subtitle {
  text-transform: uppercase;
}

.section--homepage-about__lead {
  font-size: 15px;
  font-weight: 300;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .section--homepage-about__lead {
    font-size: calc( 15px + 8 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .section--homepage-about__lead {
    font-size: 23px;
  }
}

@media (min-width: 1280px) {
  .section--homepage-about__lead {
    max-width: 65%;
  }
}

.section--homepage-about__lead .button {
  background: #282828;
}

.section--homepage-about__lead .button:after {
  vertical-align: middle;
}

/***********************
HOMEPAGE 3 TEASERS
************************/
.section--homepage-teasers {
  overflow: scroll;
  margin-bottom: 10em;
  -webkit-overflow-scrolling: touch;
}

.section--homepage-teasers:after {
  content: "";
  display: table;
  clear: both;
}

.section--homepage-teasers ::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .section--homepage-teasers {
    overflow: auto;
    max-width: auto;
    padding-bottom: 3em;
    margin-bottom: 8em;
  }
}

@media (min-width: 1280px) {
  .section--homepage-teasers {
    margin-bottom: 10em;
  }
}

.section--homepage-teasers-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 800px;
}

@media (min-width: 768px) {
  .section--homepage-teasers-wrapper {
    width: 1000px;
  }
}

@media (min-width: 1280px) {
  .section--homepage-teasers-wrapper {
    width: auto;
    overflow: hidden;
    padding-top: 10px;
  }
}

.section--homepage-teasers__column {
  margin-bottom: 4em;
  position: relative;
  flex: 0 0 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .section--homepage-teasers__column {
    flex: 0 0 300px;
  }
}

@media (min-width: 1280px) {
  .section--homepage-teasers__column {
    margin-bottom: 0;
    flex: 0 0 27.77778%;
    transition: transform 0.3s;
  }
  .section--homepage-teasers__column:hover {
    transform: translateY(-10px);
  }
}

.section--homepage-teasers__column:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #000000 transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
}

.section--homepage-teasers a {
  width: 100%;
}

.section--homepage-teasers img {
  height: 300px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .section--homepage-teasers img {
    height: auto;
    max-height: 344px;
  }
}

.section--homepage-teasers__pagetitle {
  font-size: 14px;
  color: #707070;
  margin: 0 0 0.3em;
  font-size: 14px;
  width: 100%;
  margin-top: 0.5em;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .section--homepage-teasers__pagetitle {
    font-size: calc( 14px + 6 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .section--homepage-teasers__pagetitle {
    font-size: 20px;
  }
}

@media (min-width: 400px) and (max-width: 1200px) {
  .section--homepage-teasers__pagetitle {
    font-size: calc( 14px + 6 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .section--homepage-teasers__pagetitle {
    font-size: 20px;
  }
}

.section--homepage-teasers__subtitle {
  line-height: 1.2;
  margin: 0 0 0.5em;
  width: 100%;
}

.section--homepage-teasers p {
  margin-bottom: 2em;
  flex: 1 0 auto;
  font-size: 12px;
  width: 100%;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .section--homepage-teasers p {
    font-size: calc( 12px + 3 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .section--homepage-teasers p {
    font-size: 15px;
  }
}

.section--homepage-teasers__button {
  background: #282828;
  white-space: nowrap;
}

.section--homepage-video {
  margin-bottom: 6em;
}

.section--homepage-video:after {
  content: "";
  display: table;
  clear: both;
}

.home .section--homepage-video {
  margin-bottom: 9em;
}

/***********************
HOMEPAGE NEWS
************************/
.section--homepage-news {
  padding-top: 1rem;
}

.section--homepage-news:after {
  content: "";
  display: table;
  clear: both;
}

.section--homepage-news h2, .section--homepage-news .section--homepage-teasers__subtitle {
  text-transform: uppercase;
  position: relative;
}

@media (min-width: 480px) {
  .section--homepage-news .aside--newsletter-box {
    width: 27.77778%;
    float: left;
    margin-right: 8.33333%;
    margin-top: -1rem;
    margin-bottom: 0;
  }
}

@media (min-width: 480px) {
  .section--homepage-news-column {
    width: 63.88889%;
    float: right;
    margin-right: 0;
  }
}

.aside--newsletter-box {
  display: none;
  background: #2f2f2f;
  padding: 1rem;
  margin-bottom: 3rem;
  position: relative;
}

@media (min-width: 480px) {
  .aside--newsletter-box {
    position: sticky;
    top: 1rem;
    left: 0;
    background: #141414;
  }
}

.aside--newsletter-box:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #000000 transparent transparent;
  position: absolute;
  top: 0;
  right: 0;
}

.aside--newsletter-box a {
  background: #282828;
  display: block;
  border: none;
}

.section--homepage-news-item {
  margin-bottom: 2em;
}

@media (min-width: 768px) {
  .section--homepage-news-item {
    width: 43.47826%;
    float: left;
  }
  .section--homepage-news-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .section--homepage-news-item:nth-child(2n + 2) {
    margin-left: 56.52174%;
    margin-right: -100%;
    clear: none;
  }
}

.section--homepage-news__title {
  margin-bottom: 0.2em;
}

.section--homepage-news__category {
  font-weight: 400;
  text-transform: uppercase;
  color: #707070;
  display: inline-block;
  margin-bottom: 0.5em;
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

.wf-loading .section--homepage-news__category {
  visibility: hidden;
}

.section--homepage-news__category + .section--homepage-news__category {
  margin-left: 0.5rem;
}

.section--homepage-news__date {
  font-size: 13px;
  letter-spacing: 0;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .section--homepage-news__date {
    font-size: calc( 13px + 4 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .section--homepage-news__date {
    font-size: 17px;
  }
}

.format-video .section--homepage-news__date:before,
.format-link .section--homepage-news__date:before {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../library/images/icon--video.svg") no-repeat 50%;
  background-size: cover;
  display: inline-block;
  margin-right: 0.2em;
  transform: translateY(2px);
}

@media (min-width: 768px) {
  .format-video .section--homepage-news__date:before,
  .format-link .section--homepage-news__date:before {
    width: 16px;
    height: 16px;
  }
}

.format-link .section--homepage-news__date:before {
  background: url("../library/images/icon--document.svg") no-repeat 50%;
  background-size: cover;
}

/*******************************************************************************
NEWS AND INSIGHTS
*******************************************************************************/
.main-content--news:after {
  content: "";
  display: table;
  clear: both;
}

.main-content--news > h1 {
  display: block;
}

@media (min-width: 480px) {
  .main-content--news > h1 {
    display: none;
  }
}

@media (min-width: 480px) {
  .main-content--news .aside--newsletter-box {
    width: 27.77778%;
    float: left;
    margin-right: 8.33333%;
  }
}

@media (min-width: 480px) {
  .main-content--news .section--news-list {
    width: 63.88889%;
    float: right;
    margin-right: 0;
  }
}

.main-content--news .section--news-list h1 {
  display: none;
}

@media (min-width: 480px) {
  .main-content--news .section--news-list h1 {
    display: block;
  }
}

.single-news .type-news .article-header__date {
  font-size: 13px;
  margin-bottom: 1em;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .single-news .type-news .article-header__date {
    font-size: calc( 13px + 4 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .single-news .type-news .article-header__date {
    font-size: 17px;
  }
}

.single-news .type-news .article-header__document {
  margin-bottom: 1.5em;
  display: inline-block;
}

.single-news .type-news .article-header__document:hover span {
  border: none;
}

.single-news .type-news .article-header__document span {
  display: inline-block;
  border-bottom: 1px solid #fff;
}

.single-news .type-news .article-header__document:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../library/images/icon--document.svg") no-repeat 50%;
  background-size: cover;
  display: inline-block;
  vertical-align: sub;
  margin-right: 0.5em;
}

@media (min-width: 768px) {
  .single-news .type-news .article-header__document:before {
    width: 32px;
    height: 32px;
  }
}

.single-news .type-news .article-footer {
  font-size: 12px;
  color: #707070;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .single-news .type-news .article-footer {
    font-size: calc( 12px + 3 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .single-news .type-news .article-footer {
    font-size: 15px;
  }
}

.single-news .type-news .article-footer a {
  color: #707070;
}

.single-news .type-news .article-footer:before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #707070;
  margin: 1em 0 3em;
}

.post-type-archive #main h2, .post-type-archive #main .section--homepage-teasers__subtitle {
  margin: 0 0 0.2em;
}

.single-news-item {
  margin-bottom: 3em;
  position: relative;
}

.single-news-item:last-of-type {
  margin: 0;
}

.single-news-item__category {
  font-weight: 400;
  text-transform: uppercase;
  color: #707070;
  display: inline-block;
  margin-bottom: 0.5em;
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

.wf-loading .single-news-item__category {
  visibility: hidden;
}

.single-news-item__category + .single-news-item__category {
  margin-left: 0.5rem;
}

.single-news-item__title {
  margin: 0 0 0.2em;
}

.single-news-item__read-more {
  padding: 5px;
  opacity: 1 !important;
  text-decoration: none;
  display: none;
}

@media (min-width: 1280px) {
  .single-news-item__read-more {
    position: absolute;
    right: 15.25424%;
  }
}

.single-news-item__date {
  font-size: 13px;
  letter-spacing: 0;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .single-news-item__date {
    font-size: calc( 13px + 4 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .single-news-item__date {
    font-size: 17px;
  }
}

.format-video .single-news-item__date:before,
.format-link .single-news-item__date:before {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../library/images/icon--video.svg") no-repeat 50%;
  background-size: cover;
  display: inline-block;
  margin-right: 0.5em;
  transform: translateY(2px);
}

@media (min-width: 768px) {
  .format-video .single-news-item__date:before,
  .format-link .single-news-item__date:before {
    width: 16px;
    height: 16px;
  }
}

.format-link .single-news-item__date:before {
  background: url("../library/images/icon--document.svg") no-repeat 50%;
  background-size: cover;
}

.single-news-item p {
  display: block;
  line-height: 1.6;
  margin: 0 0 0.5em;
  font-size: 14px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .single-news-item p {
    font-size: calc( 14px + 6 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .single-news-item p {
    font-size: 20px;
  }
}

.single-news-item p:after {
  content: " ...";
}

/*******************************************************************************
CAPABILITY PAGE
*******************************************************************************/
.section--capability-wrap {
  margin-bottom: 5em;
}

.section--capability-wrap:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 1280px) {
  .section--capability-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.section--capability-wrap #main {
  float: none;
}

@media (min-width: 1280px) {
  .section--capability-wrap #main {
    order: 2;
    margin: 0 !important;
    flex: 0 0 63.88889%;
  }
}

.section--capability-wrap .sidebar {
  float: none;
  padding: 0;
}

@media (min-width: 1280px) {
  .section--capability-wrap .sidebar {
    order: 1;
    flex: 0 0 32.20339%;
    margin-bottom: 1.5em;
  }
}

.sidebar__contact-person {
  display: flex;
  align-items: center;
  width: 100%;
}

.sidebar__contact-person img {
  width: 120px;
  height: auto;
  margin-right: 1em;
}

.sidebar__contact-person__text {
  font-size: 12px;
  flex: 1;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .sidebar__contact-person__text {
    font-size: calc( 12px + 3 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .sidebar__contact-person__text {
    font-size: 15px;
  }
}

.sidebar__contact-person__text b {
  display: block;
  margin-bottom: 1em;
}

.sidebar__contact-person__text h5 {
  margin: 0;
}

.sidebar__contact-person__text > *:last-child {
  margin: 0;
}

.sidebar__contact-person__text .button {
  padding-bottom: 2px;
  border-bottom: 2px solid #fff;
  text-decoration: none;
}

.sidebar__contact-person__text .button:hover {
  border-color: transparent;
}

.sidebar__contact-person__text .button:after {
  content: "→";
  margin-left: 5px;
  vertical-align: text-bottom;
  display: inline-block;
}

.section--capability-cta {
  margin-bottom: 5em;
  position: relative;
}

.section--capability-cta__links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
}

.section--capability-cta__links a {
  background: #000;
  border: none;
  transform: scale(1.1);
}

.section--capability-cta__links a + a {
  margin-left: 2em;
}

.section--capability-cta img {
  object-fit: cover;
  object-position: 50% 50%;
  height: 180px;
  opacity: 0.3;
}

@media (min-width: 768px) {
  .section--capability-cta img {
    height: 350px;
  }
}

.section--capability-wrap + .section--capability-news {
  border-top: 1px solid #282828;
  padding-top: 5em;
}

.section--capability-news {
  padding-bottom: 2em;
  width: 100%;
}

.section--capability-news:after {
  content: "";
  display: table;
  clear: both;
}

.section--capability-news h2, .section--capability-news .section--homepage-teasers__subtitle {
  text-transform: uppercase;
}

@media (min-width: 480px) {
  .section--capability-news .aside--newsletter-box {
    width: 27.77778%;
    float: left;
    margin-right: 8.33333%;
    margin-top: -1rem;
    margin-bottom: 0;
  }
}

@media (min-width: 480px) {
  .section--capability-news-wrapper {
    width: 63.88889%;
    float: right;
    margin-right: 0;
  }
}

.section--capability-news .single-news-item {
  margin-bottom: 2em;
}

.section--capability-news .single-news-item:last-of-type {
  margin: 0;
}

/*******************************************************************************
ABOUT PAGE
*******************************************************************************/
.section--about-team {
  clear: both;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  padding-top: 3em;
}

@media (min-width: 768px) {
  .section--about-team {
    padding: 0;
  }
}

@media (min-width: 1280px) {
  .section--about-team {
    overflow: hidden;
  }
}

.section--about-team ::-webkit-scrollbar {
  display: none;
}

.section--about-team-member {
  margin-bottom: 4em;
  display: inline-block;
  max-width: 220px;
  margin-right: 2em;
  vertical-align: top;
  transition: transform 0.3s;
}

@media (min-width: 768px) {
  .section--about-team-member {
    width: 45.83333%;
    float: left;
    max-width: none;
    margin-right: 0;
    padding-top: 10px;
  }
  .section--about-team-member:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .section--about-team-member:nth-child(2n + 2) {
    margin-left: 54.16667%;
    margin-right: -100%;
    clear: none;
  }
}

@media (min-width: 1280px) {
  .section--about-team-member {
    width: 27.77778%;
    float: left;
  }
  .section--about-team-member:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0;
  }
  .section--about-team-member:nth-child(3n + 2) {
    margin-left: 36.11111%;
    margin-right: -100%;
    clear: none;
  }
  .section--about-team-member:nth-child(3n + 3) {
    margin-left: 72.22222%;
    margin-right: -100%;
    clear: none;
  }
}

.section--about-team-member:hover {
  transform: translateY(-10px);
}

.section--about-team-member__name {
  margin-bottom: 0.5em;
}

.section--about-team-member__image {
  height: 300px;
  width: 100%;
  display: block;
  margin-bottom: 1em;
  position: relative;
}

@media (min-width: 768px) {
  .section--about-team-member__image {
    height: 380px;
    width: 92%;
  }
}

.section--about-team-member__image img {
  object-fit: cover;
  object-position: 50% 0;
}

.section--about-team-member__image:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #000000 transparent transparent;
  position: absolute;
  top: 0;
  right: 0em;
  z-index: 1;
}

@media (min-width: 768px) {
  .section--about-team-member__image:before {
    right: 1em;
  }
}

.section--about-team-member__position {
  font-weight: 400;
  text-transform: uppercase;
  color: #707070;
  display: block;
  margin-bottom: 0.5em;
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

.wf-loading .section--about-team-member__position {
  visibility: hidden;
}

.section--about-team-member__contact {
  margin-bottom: 2em;
  font-size: 13px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .section--about-team-member__contact {
    font-size: calc( 13px + 4 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .section--about-team-member__contact {
    font-size: 17px;
  }
}

.section--about-team-member__contact a:after {
  content: "";
  display: table;
  clear: both;
}

.section--about-team-member__contact a span {
  float: left;
  width: 80px;
}

.section--about-team-member__contact a:hover {
  text-decoration: underline;
}

.section--about-team-member__link {
  background: #282828;
  transition: all 0.3s;
}

.section--team-member .sidebar {
  padding: 0;
  margin-top: 4em;
  width: 50%;
}

@media (min-width: 1280px) {
  .section--team-member .sidebar {
    padding-top: 250px;
    width: 23.72881%;
    float: left;
    margin-right: 1.69492%;
    margin-left: 8.47458%;
    margin-bottom: 1.5em;
    margin-top: 0;
  }
}

.section--team-member__image {
  margin-bottom: 10px;
}

.section--team-member__contact {
  font-size: 13px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .section--team-member__contact {
    font-size: calc( 13px + 4 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .section--team-member__contact {
    font-size: 17px;
  }
}

.section--team-member__contact a {
  display: block;
}

.section--team-member__contact a:after {
  content: "";
  display: table;
  clear: both;
}

.section--team-member__contact b {
  display: block;
  margin-bottom: 1em;
}

.section--team-member .article-footer {
  clear: both;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  font-size: 12px;
}

@media (min-width: 768px) {
  .section--team-member .article-footer {
    margin-left: 36.11111%;
  }
}

.section--team-member .article-footer a {
  color: #707070;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .section--team-member .article-footer {
    font-size: calc( 12px + 3 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .section--team-member .article-footer {
    font-size: 15px;
  }
}

.section--team-member .article-footer:before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #707070;
  margin: 1em 0 3em;
}

.single-team-member__position {
  font-weight: 400;
  text-transform: uppercase;
  color: #707070;
  display: block;
  margin-bottom: 0.5em;
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  white-space: wrap;
}

.wf-loading .single-team-member__position {
  visibility: hidden;
}

.pagination {
  margin-top: 3em;
}

.pagination ul.page-numbers {
  margin: 0;
  padding: 0;
  color: #707070;
  display: flex;
}

.pagination ul.page-numbers > li > * {
  height: 40px;
  width: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
}

.pagination ul.page-numbers li + li {
  margin-left: 1em;
}

.BlockContent {
  /*******************************************************************************
    ICON LIST
    *******************************************************************************/
  /*******************************************************************************
    Quote
    *******************************************************************************/
  /*******************************************************************************
    Hero Text
    *******************************************************************************/
  /*******************************************************************************
    Numbered List
    *******************************************************************************/
}

.BlockContent > section:last-child {
  margin-bottom: 0;
}

.BlockContent .IconList {
  margin: 3rem 0;
}

.BlockContent .IconList ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}

.BlockContent .IconList ul .ph {
  font-size: 2em;
}

.BlockContent .IconList--item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.BlockContent .IconList--item div {
  margin-top: 3px;
}

.BlockContent .IconList--title {
  display: block;
  line-height: 1;
  margin-top: 0.1em;
}

.BlockContent .IconList--text {
  font-size: 12px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .BlockContent .IconList--text {
    font-size: calc( 12px + 3 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .BlockContent .IconList--text {
    font-size: 15px;
  }
}

.BlockContent .BlockQuote {
  padding: 0 0 0 3rem;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 1280px) {
  .BlockContent .BlockQuote {
    position: relative;
    margin-left: calc(-63.88889% + 57px);
  }
}

.BlockContent .BlockQuote p {
  line-height: 1;
}

.BlockContent .BlockQuote blockquote {
  width: auto;
  margin: 0;
  padding: 0;
}

.BlockContent .HeroText {
  margin: 3rem 0;
  background: linear-gradient(180deg, #363636 -50.52%, #292929 0.14%, #1A1A1A 62.37%);
  padding: 1rem;
  border-radius: 3px;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .BlockContent .HeroText {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

@media (min-width: 1280px) {
  .BlockContent .HeroText {
    padding: 4rem;
    position: relative;
    margin-left: calc(-63.88889% + 57px);
  }
}

.BlockContent .HeroText--title {
  margin-bottom: 0;
}

.BlockContent .HeroText--text {
  margin-bottom: 0;
  text-transform: none;
  padding-right: 20%;
}

.BlockContent .HeroText--link {
  float: right;
  background: #282828;
  border: none;
}

.BlockContent .NumberedList ol {
  columns: 2;
  gap: 2rem;
  counter-reset: item;
}

.BlockContent .NumberedList li {
  counter-increment: item;
  margin-bottom: 5px;
  display: grid;
  grid-template-columns: 40px auto;
  align-items: start;
  gap: 1rem;
}

.BlockContent .NumberedList li:before {
  content: counter(item, decimal-leading-zero);
  color: white;
  font-size: 20px;
  font-family: "din-condensed", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  margin-top: -0.2em;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .BlockContent .NumberedList li:before {
    font-size: calc( 20px + 16 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .BlockContent .NumberedList li:before {
    font-size: 36px;
  }
}

.BlockContent .NumberedList p {
  font-size: 13px;
}

@media (min-width: 400px) and (max-width: 1200px) {
  .BlockContent .NumberedList p {
    font-size: calc( 13px + 4 * ( ( 100vw - 400px) / 800 ));
  }
}

@media (min-width: 1200px) {
  .BlockContent .NumberedList p {
    font-size: 17px;
  }
}

.section--capability-wrap.has-hero-block .sidebar,
.section--capability-wrap.has-quote-block .sidebar {
  flex: 0 0 100%;
  order: 2;
  margin-top: 3rem;
}

@media (min-width: 1280px) {
  .section--capability-wrap.has-hero-block .sidebar,
  .section--capability-wrap.has-quote-block .sidebar {
    padding-left: 36.80556%;
  }
}
