@media all {
  body.error404 > main {
    padding-bottom: 0;
  }
  body.error404 > main .editorial .punchline {
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  body.error404 > main .editorial .title {
    font-size: 180px;
  }
  body.error404 > main .editorial .punchline {
    font-size: 60px;
  }
}
@media (max-width: 1024px) {
  body.error404 > main .editorial .title {
    font-size: 90px;
  }
  body.error404 > main .editorial .punchline {
    font-size: 20px;
  }
}
@media all {
  body.login > main .background {
    position: relative;
    background-color: #707070;
  }
  body.login > main .input {
    padding: 0.5em 1.75em;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f6f6f6;
    border-radius: 0.25em;
    color: #707070;
    text-align: center;
  }
}
@media (min-width: 1025px) {
  body.login > main .background {
    height: calc(100vh - 90px);
  }
  body.login > main .input {
    font-size: 25px;
  }
}
@media (max-width: 1024px) {
  body.login > main .background {
    height: calc(100vh - 45px);
  }
}
._gate-button {
  width: 2.65em;
  height: 2.65em;
  line-height: 2.65em;
  position: fixed;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 10000;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  background-color: white;
  text-align: center;
  font-weight: bold;
}
._gate-button:hover {
  background-color: black;
  color: white;
}
._gate-button i {
  width: 0.45em;
  height: 1em;
  display: inline-block;
  margin-left: 0.25em;
  background: currentColor;
  animation: blink-animation 1s step-end infinite;
}
@keyframes blink-animation {
  from,
  to {
    visibility: hidden;
  }
  50% {
    visibility: visible;
  }
}
._popin-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.66);
  cursor: pointer;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
._popin-container.open {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
._popin-container .popin {
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: 10px;
  z-index: 10000;
  transform: translateX(-50%) translateY(-50%) translateZ(0);
  overflow: hidden;
  cursor: auto;
}
._popin-container .close {
  line-height: 1;
  position: absolute;
  top: 0.75em;
  right: 0.75em;
  color: white;
  font-size: 1.75em;
}
._popin-container .close::after {
  content: "✕";
}
._noscroll {
  overflow: hidden;
}
*[popin-open] {
  cursor: pointer;
}
*[popin-open] * {
  pointer-events: none;
}
@media all {
  ._popin-container .popin {
    max-height: calc(100vh - 90px);
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    background-color: white;
  }
  ._popin-container .popin .intro {
    margin-bottom: 3em;
  }
  ._popin-container .popin .intro .title {
    color: #100D4B;
  }
}
@media (min-width: 1025px) {
  ._popin-container .popin {
    width: 1000px;
    padding: 50px 100px;
  }
  ._popin-container .popin.small {
    width: 650px;
  }
  ._popin-container .popin.tiny {
    width: 450px;
  }
  ._popin-container .popin .intro .title {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  ._popin-container .popin {
    width: calc(100vw - 2*30px);
    padding: 30px 35px;
    max-width: 460px;
  }
  ._popin-container .popin .intro .title {
    font-size: 20px;
  }
}
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}
/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}
/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
@media all {
  .Content_type.paragraph .title {
    color: #100D4B;
  }
  .Content_type.paragraph .title + .subtitle {
    margin-top: 0.5em;
  }
  .Content_type.paragraph .title ~ .text,
  .Content_type.paragraph .subtitle ~ .text {
    margin-top: 1.75em;
  }
  .Content_type.quote .text {
    line-height: 1.4;
  }
  .Content_type.quote .author {
    margin-top: 0.5em;
    color: #100D4B;
  }
  .Content_type.highlight {
    line-height: 1.4;
    color: #100D4B;
  }
  .Content_type.double-picture-h::before,
  .Content_type.double-picture-h::after {
    content: '';
    display: table;
  }
  .Content_type.double-picture-h::after {
    clear: both;
  }
  .Content_type.double-picture-h .container:first-child .caption {
    position: absolute;
  }
  .Content_type.double-picture-h .container:last-child {
    float: right;
    position: relative;
    z-index: 1;
    margin-left: 1em;
  }
  .Content_type.profiles {
    color: #100D4B;
  }
  .Content_type.profiles .image {
    width: 300px;
    height: 300px;
  }
  .Content_type.profiles .details {
    padding: 0 20px;
  }
  .Content_type.profiles .linkedin .picto {
    width: 2.75em;
    height: 2.75em;
    display: inline-flex;
    justify-content: center;
    border-radius: 100%;
    background-color: #D9E9F3;
  }
  .Content_type.profiles .linkedin .picto .logo {
    width: 1.25em;
  }
  .Content_type.cta .cta-button {
    padding: 0.35em 1.5em;
    display: inline-block;
    background-color: #100D4B;
    border: 1px solid #100D4B;
    border-radius: 2em;
    color: #D9E9F3;
  }
  .Content_type.charts {
    color: #100D4B;
  }
  .Content_type.charts .chart {
    position: relative;
  }
  .Content_type.charts .chart .container {
    display: grid;
    margin-top: 2em;
    align-items: center;
  }
  .Content_type.charts .chart .donut {
    aspect-ratio: 1;
  }
  .Content_type.charts .chart .labels.full {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    background-color: #D9E9F3;
    transition: opacity cubic-bezier(0.2, 0.01, 0.45, 1) 0.25s, visibility cubic-bezier(0.2, 0.01, 0.45, 1) 0.25s;
  }
  .Content_type.charts .chart .labels.full.hidden {
    opacity: 0;
    visibility: hidden;
  }
  .Content_type.charts .chart .labels .swatch {
    width: 1.5em;
    height: 0.825em;
    display: inline-block;
    margin-right: 0.5em;
    line-height: 1.3;
  }
  .Content_type.charts .chart .label {
    padding-left: 2em;
    margin-bottom: 0.5em;
    text-indent: -2em;
  }
  .Content_type.charts .chart .more {
    display: inline-block;
    margin-top: 1em;
  }
  .Content_type.html {
    overflow: hidden;
  }
  .Content_type .caption {
    color: #707070;
  }
}
@media (min-width: 1025px) {
  .Content_type {
    margin-top: 90px;
  }
  .Content_type.paragraph .title {
    font-size: 30px;
  }
  .Content_type.paragraph .subtitle {
    font-size: 18px;
  }
  .Content_type.quote .text {
    font-size: 45px;
  }
  .Content_type.quote .author {
    font-size: 20px;
    text-align: right;
  }
  .Content_type.highlight {
    font-size: 50px;
    text-align: center;
  }
  .Content_type.double-picture-h .image {
    width: 860px;
  }
  .Content_type.double-picture-h .container:first-child .caption {
    width: 130px;
  }
  .Content_type.double-picture-h .container:last-child {
    margin-top: -150px;
  }
  .Content_type.double-picture-v {
    display: flex;
    justify-content: space-between;
  }
  .Content_type.double-picture-v .image {
    width: 460px;
    height: 620px;
  }
  .Content_type.profiles {
    display: flex;
    justify-content: center;
  }
  .Content_type.profiles .profile {
    width: 300px;
    margin: 0 25px;
  }
  .Content_type.profiles .name {
    margin-top: 20px;
    font-size: 28px;
  }
  .Content_type.profiles .job {
    margin-top: 15px;
    font-size: 15px;
  }
  .Content_type.profiles .linkedin {
    margin-top: 20px;
  }
  .Content_type.map .frame {
    height: 550px;
  }
  .Content_type.cta .cta-button {
    font-size: 16px;
  }
  .Content_type.cta .cta-button:hover {
    background-color: transparent;
    border-color: #100D4B;
    color: #100D4B;
  }
  .Content_type.charts {
    display: flex;
    justify-content: space-between;
  }
  .Content_type.charts .chart {
    width: 460px;
  }
  .Content_type.charts .chart:only-child {
    margin: 0 auto;
  }
  .Content_type.charts .chart .title {
    font-size: 30px;
  }
  .Content_type.charts .chart .subtitle {
    font-size: 16px;
  }
  .Content_type.charts .chart .container {
    grid-template-columns: 275px auto;
  }
  .Content_type.charts .chart .donut {
    width: 100%;
  }
  .Content_type.charts .chart .labels.top {
    margin-left: 20px;
  }
  .Content_type.charts .chart .labels.full {
    padding: 40px;
    top: calc(100% - 40px);
  }
  .Content_type.charts .chart .labels.full .label {
    width: 154px;
  }
  .Content_type.charts .chart .labels.full .label:nth-child(even) {
    margin-left: 20px;
  }
  .Content_type .caption {
    margin-top: 10px;
  }
}
@media (max-width: 1024px) {
  .Content_type {
    margin-top: 45px;
  }
  .Content_type.paragraph .title {
    font-size: 18px;
  }
  .Content_type.paragraph .subtitle {
    font-size: 12px;
  }
  .Content_type.quote .text {
    font-size: 18px;
  }
  .Content_type.quote .author {
    text-align: center;
  }
  .Content_type.highlight {
    font-size: 18px;
  }
  .Content_type.double-picture-h .container:first-child {
    width: 90%;
  }
  .Content_type.double-picture-h .container:first-child .caption {
    width: 30%;
    padding-right: 5px;
    box-sizing: border-box;
  }
  .Content_type.double-picture-h .container:last-child {
    width: 70%;
    margin-top: -60px;
  }
  .Content_type.double-picture-v .container + .container {
    margin-top: 45px;
  }
  .Content_type.double-picture-v .image {
    width: 100%;
    height: 0;
    padding-bottom: 133%;
  }
  .Content_type.profiles .profile {
    max-width: 300px;
    margin: 0 auto;
  }
  .Content_type.profiles .profile:not(:first-child) {
    margin-top: 45px;
  }
  .Content_type.profiles .name {
    margin-top: 10px;
    font-size: 22px;
  }
  .Content_type.profiles .job {
    margin-top: 8px;
    font-size: 11px;
  }
  .Content_type.profiles .linkedin {
    margin-top: 10px;
  }
  .Content_type.map .frame {
    height: 400px;
  }
  .Content_type.charts .chart + .chart {
    margin-top: 40px;
  }
  .Content_type.charts .chart .title {
    font-size: 18px;
  }
  .Content_type.charts .chart .subtitle {
    font-size: 10px;
  }
  .Content_type.charts .chart .container {
    grid-template-columns: auto 110px;
  }
  .Content_type.charts .chart .donut {
    width: calc(100vw - 110px - 60px);
    max-width: 350px;
  }
  .Content_type.charts .chart .labels.top {
    margin-left: 15px;
  }
  .Content_type.charts .chart .labels.full {
    width: calc(100vw - 60px);
    max-width: 460px;
    padding: 20px;
    box-sizing: border-box;
    top: calc(100% - 20px);
  }
  .Content_type.charts .chart .labels.full .label {
    width: calc(50% - 10px);
    box-sizing: border-box;
  }
  .Content_type.charts .chart .labels.full .label:nth-child(even) {
    margin-left: 20px;
  }
  .Content_type .caption {
    margin-top: 5px;
  }
}
@media all {
  .Downloads__slider {
    color: #100D4B;
  }
  .Downloads__slider .download .image {
    height: 0;
    padding-bottom: 70%;
  }
  .Downloads__slider .download .frame {
    background-color: white;
  }
  .Downloads__slider .download .date {
    padding: 0.5em 1em;
    background-color: #D9E9F3;
    border-radius: 1.25em;
  }
  .Downloads__slider .download .title {
    margin: 1.25em 0;
  }
}
@media (min-width: 1025px) {
  .Downloads__slider {
    padding-top: 120px;
  }
  .Downloads__slider .intro {
    margin-bottom: 70px;
  }
  .Downloads__slider .intro .title {
    font-size: 45px;
  }
  .Downloads__slider .download .frame {
    padding: 40px;
  }
  .Downloads__slider .download .date {
    font-size: 16px;
  }
  .Downloads__slider .download .title {
    font-size: 33px;
  }
  .Downloads__slider .download .button {
    font-size: 15px;
  }
  .Downloads__slider .download:hover .button {
    text-decoration: underline;
  }
  .Downloads__slider .navigation {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
  }
  .Downloads__slider .navigation .button {
    position: absolute;
    margin: 0;
  }
  .Downloads__slider .navigation .prev {
    left: -80px;
  }
  .Downloads__slider .navigation .next {
    right: -80px;
  }
}
@media (max-width: 1024px) {
  .Downloads__slider {
    padding-top: 40px;
  }
  .Downloads__slider .intro {
    margin-bottom: 30px;
  }
  .Downloads__slider .intro .title {
    font-size: 22px;
  }
  .Downloads__slider .mobile-full {
    width: 100%;
    max-width: 100%;
  }
  .Downloads__slider .download .container {
    max-width: 200px;
  }
  .Downloads__slider .download .frame {
    padding: 18px;
  }
  .Downloads__slider .download .date {
    font-size: 8px;
  }
  .Downloads__slider .download .title {
    font-size: 13px;
  }
}
@media all {
  .Forms__contact .disclaimer a {
    color: #100D4B;
  }
  .Forms__contact .grecaptcha-badge {
    visibility: hidden;
  }
}
@media (min-width: 1025px) {
  .Forms__contact .message {
    height: 17em;
  }
  .Forms__contact .disclaimer {
    font-size: 0.85em;
  }
}
@media all {
  .Forms__feedback .title {
    margin-bottom: 0.25em;
    color: #100D4B;
  }
}
@media (min-width: 1025px) {
  .Forms__feedback {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .Forms__feedback .title {
    font-size: 38px;
  }
  .Forms__feedback .text {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .Forms__feedback {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .Forms__feedback .title {
    font-size: 25px;
  }
}
@media (min-width: 1025px) {
  .Forms__newsletter .popin {
    padding: 120px 150px;
  }
}
@media all {
  ._unified-form .subtitle {
    margin-bottom: 1.4em;
  }
  ._unified-form .row::before,
  ._unified-form .row::after {
    content: '';
    display: table;
  }
  ._unified-form .row::after {
    clear: both;
  }
  ._unified-form .row + .row {
    margin-top: 1.75em;
  }
  ._unified-form .row .title {
    display: block;
  }
  ._unified-form .row_col:not(.auto) {
    float: left;
  }
  ._unified-form .row_col.auto {
    display: inline-block;
  }
  ._unified-form textarea {
    width: 100%;
    height: 8em;
  }
  ._unified-form textarea:focus {
    border-color: #100D4B;
  }
  ._unified-form input,
  ._unified-form textarea,
  ._unified-form select {
    box-sizing: border-box;
    padding: 0.75em 1.5em;
    border: 1px solid currentColor;
    border-radius: 1.5em;
    transition: border-color cubic-bezier(0.2, 0.01, 0.45, 1) 0.4s;
    color: inherit;
  }
  ._unified-form input:focus,
  ._unified-form textarea:focus,
  ._unified-form select:focus {
    border-color: #100D4B;
  }
  ._unified-form input:not([type="radio"]):not([type="checkbox"]):not([type="date"]) {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: -3px;
  }
  ._unified-form input[type="radio"],
  ._unified-form input[type="checkbox"] {
    margin-right: 0.5em;
    vertical-align: middle;
  }
  ._unified-form select {
    width: 100%;
  }
  ._unified-form .submit {
    padding: 0.5em 1.75em;
    margin-top: 3.5em;
    border: 1px solid currentColor;
    border-radius: 1.5em;
  }
}
@media (min-width: 1025px) {
  ._unified-form .subtitle {
    font-size: 20px;
  }
  ._unified-form .columns {
    display: flex;
    justify-content: space-between;
  }
  ._unified-form .columns .column {
    width: calc(50% - 30px);
  }
  ._unified-form .columns + .column {
    margin-left: 60px;
  }
  ._unified-form .row .title {
    margin-bottom: 10px;
    font-size: 15px;
  }
  ._unified-form .row_col:not(.auto) {
    width: calc(50% - 15px);
  }
  ._unified-form .row_col + .row_col {
    margin-left: 30px;
  }
  ._unified-form .submit:hover {
    background-color: #100D4B;
    border-color: #100D4B;
    color: white;
  }
}
@media (max-width: 1024px) {
  ._unified-form .subtitle {
    font-size: 16px;
  }
  ._unified-form .column + .column {
    margin-top: 35px;
  }
  ._unified-form .row .title {
    margin-bottom: 5px;
  }
  ._unified-form .row .row_col {
    width: 50%;
  }
  ._unified-form .row .row_col.mobile-full {
    width: 100%;
  }
  ._unified-form .row .row_col.mobile-full + .mobile-full {
    margin-top: 1.75em;
  }
  ._unified-form input[type="radio"] + label,
  ._unified-form input[type="checkbox"] + label {
    font-size: 0.9em;
  }
}
@media all {
  .Pages__cta .image {
    aspect-ratio: 5 / 3;
  }
  .Pages__cta .frame {
    position: relative;
    background-color: #D9E9F3;
    color: #100D4B;
  }
  .Pages__cta .button {
    padding: 0.35em 1.5em;
    display: inline-block;
    margin-top: 2em;
    background-color: #100D4B;
    border: 1px solid #100D4B;
    border-radius: 2em;
    color: #D9E9F3;
  }
}
@media (min-width: 1025px) {
  .Pages__cta .frame {
    padding: 60px;
    margin: 0 80px;
    margin-top: -160px;
  }
  .Pages__cta .button {
    font-size: 22px;
  }
  .Pages__cta .button:hover {
    background-color: transparent;
    border-color: #100D4B;
    color: #100D4B;
  }
}
@media (max-width: 1024px) {
  .Pages__cta .frame {
    padding: 20px;
    margin: 0 30px;
    margin-top: -80px;
  }
  .Pages__cta .button {
    font-size: 14px;
  }
}
@media all {
  body.homepage > main {
    padding-bottom: 0;
  }
  body.homepage > main .section-alternate > *:nth-child(odd) {
    background-color: #f6f6f6;
  }
  body.homepage > main .section-alternate > *:nth-child(odd) .bg-swap {
    color: inherit;
    background-color: white;
  }
}
@media all {
  .Pages__intro-homepage {
    background-color: #f6f6f6;
  }
  .Pages__intro-homepage .featured .page .image-container {
    margin-left: var(--padding-left);
  }
  .Pages__intro-homepage .featured .page .image {
    height: 0;
    padding-bottom: 100%;
  }
  .Pages__intro-homepage .featured .page .frame {
    padding: var(--frame-padding);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background-color: #D9E9F3;
    color: #100D4B;
  }
  .Pages__intro-homepage .featured .page .title {
    margin-bottom: 1em;
    font-size: var(--font-title);
  }
  .Pages__intro-homepage .featured .page .more {
    margin-top: 1em;
    font-size: var(--font-more);
  }
}
@media (min-width: 1025px) {
  .Pages__intro-homepage {
    padding-bottom: 90px !important;
  }
  .Pages__intro-homepage .intro {
    width: 480px;
  }
  .Pages__intro-homepage .intro .subtitle {
    font-size: 90px;
    white-space: nowrap;
  }
  .Pages__intro-homepage .intro .subtitle + .text {
    margin-top: 50px;
    position: relative;
    z-index: 1;
  }
  .Pages__intro-homepage .featured {
    --gutter: 80px;
    --image-width: 420px;
    --padding-left: 40px;
    --padding-bottom: 130px;
    --frame-padding: 40px;
    --font-title: 48px;
    --font-more: 15px;
  }
  .Pages__intro-homepage .featured::before,
  .Pages__intro-homepage .featured::after {
    content: '';
    display: table;
  }
  .Pages__intro-homepage .featured::after {
    clear: both;
  }
  .Pages__intro-homepage .featured .page {
    padding-bottom: var(--padding-bottom);
    position: relative;
    float: left;
    margin-top: 80px;
  }
  .Pages__intro-homepage .featured .page:nth-child(even) {
    margin-left: var(--gutter);
    transform: translateY(-230px);
  }
  .Pages__intro-homepage .featured .page .image,
  .Pages__intro-homepage .featured .page .image-container {
    width: var(--image-width);
  }
  .Pages__intro-homepage .featured .page .text-container {
    position: absolute;
    bottom: 0;
  }
  .Pages__intro-homepage .featured .page .frame {
    width: 370px;
  }
  .Pages__intro-homepage .featured .page .title {
    max-width: 66%;
  }
  .Pages__intro-homepage .featured .page:hover .more {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }
}
@media (max-width: 1024px) {
  .Pages__intro-homepage .featured {
    --padding-left: 20px;
    --frame-padding: 40px;
    --font-title: 32px;
    --font-more: 11px;
  }
  .Pages__intro-homepage .featured .page {
    margin-top: 60px;
  }
  .Pages__intro-homepage .featured .page .image {
    width: 100%;
  }
  .Pages__intro-homepage .featured .page .text-container {
    position: relative;
    margin-top: -170px;
    z-index: 1;
  }
  .Pages__intro-homepage .featured .page .frame {
    width: 85%;
  }
  .Pages__intro-homepage .featured .page .title {
    max-width: 40%;
  }
}
@media all {
  .Pages__intro .stats {
    display: inline-flex;
    background-color: white;
  }
  .Pages__intro .stats .value {
    color: #100D4B;
  }
}
@media (min-width: 1025px) {
  .Pages__intro .stats {
    padding: 30px 10px;
    margin-top: 45px;
    border-radius: 33px;
  }
  .Pages__intro .stats .stat {
    padding: 0 30px;
  }
  .Pages__intro .stats .value {
    font-size: 23px;
    line-height: 1.4;
  }
}
@media (max-width: 1024px) {
  .Pages__intro .stats {
    padding: 15px 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    border-radius: 26px;
  }
  .Pages__intro .stats .stat {
    width: 50%;
    padding: 10px 15px;
    box-sizing: border-box;
    white-space: nowrap;
  }
  .Pages__intro .stats .value {
    font-size: 16px;
    white-space: nowrap;
  }
}
@media all {
  body.page > main {
    background-color: #f6f6f6;
  }
  body.page > main .children .filters-menu .picto {
    display: inline-block;
    filter: invert(7%) sepia(84%) saturate(3541%) hue-rotate(242deg) brightness(82%) contrast(105%);
  }
  body.page > main .children .filters-menu .caption {
    margin-left: 1em;
    color: #100D4B;
  }
  body.page > main .page {
    background-color: white;
  }
  body.page > main .page .cover {
    width: 100%;
    height: 0;
    padding-bottom: 80%;
  }
  body.page > main .page .title {
    color: #100D4B;
  }
  body.page > main .page .subtitle {
    margin-top: 0.5em;
    font-size: 16px;
    color: #D9E9F3;
  }
  body.page > main .page .more {
    margin-top: 2em;
    color: #100D4B;
  }
}
@media (min-width: 1025px) {
  body.page > main .children {
    padding-top: 120px;
  }
  body.page > main .children .filters-menu .picto {
    margin-bottom: -5px;
  }
  body.page > main .children .filters-menu .caption {
    font-size: 20px;
  }
  body.page > main .pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body.page > main .page {
    width: calc(50% - 40px);
    margin-bottom: 80px;
  }
  body.page > main .page.odd {
    position: relative;
    top: 100px;
  }
  body.page > main .page.even {
    margin-left: 80px;
  }
  body.page > main .page:last-child.odd {
    margin-bottom: 100px;
  }
  body.page > main .page .overflow {
    height: 305px;
    position: relative;
    overflow: hidden;
  }
  body.page > main .page .overflow > * + * {
    margin-top: 15px;
  }
  body.page > main .page .content {
    padding: 60px 60px 55px;
  }
  body.page > main .page .title {
    font-size: 32px;
  }
  body.page > main .page .tags {
    font-size: 12px;
  }
  body.page > main .page:hover .more {
    text-decoration: underline;
  }
}
@media (max-width: 1024px) {
  body.page > main .children {
    padding-top: 60px;
  }
  body.page > main .children .filters-menu {
    margin-bottom: 30px;
  }
  body.page > main .children .filters-menu .picto {
    width: 20px;
  }
  body.page > main .children .filters-menu .caption {
    font-size: 12px;
  }
  body.page > main .page {
    margin-top: 30px;
  }
  body.page > main .page .content {
    padding: 30px;
  }
  body.page > main .page .overflow > * + * {
    margin-top: 15px;
  }
  body.page > main .page .title {
    font-size: 26px;
  }
  body.page > main .page .subtitle {
    font-size: 14px;
  }
}
@media all {
  .Pages__slider .page .container .image {
    height: 100%;
    width: 100%;
  }
  .Pages__slider .page .content {
    background-color: #D9E9F3;
    color: #100D4B;
  }
  .Pages__slider .page .title {
    color: #100D4B;
  }
  .Pages__slider .page .text {
    margin-top: 2em;
  }
  .Pages__slider .more {
    color: #100D4B;
    text-align: center;
  }
}
@media (min-width: 1025px) {
  .Pages__slider {
    position: relative;
  }
  .Pages__slider .intro {
    padding-left: 115px;
  }
  .Pages__slider .page {
    position: relative;
  }
  .Pages__slider .page .container {
    height: 610px;
    width: 885px;
    float: right;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 325px 100%, 325px 560px, 0 560px);
  }
  .Pages__slider .page .content {
    width: 440px;
    padding: 60px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 40px;
  }
  .Pages__slider .page .title {
    font-size: 40px;
  }
  .Pages__slider .more {
    position: relative;
    margin-top: -20px;
    margin-left: 60px;
    float: left;
    font-size: 15px;
  }
  .Pages__slider .more:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }
  .Pages__slider .navigation {
    position: absolute;
    left: 310px;
    bottom: -20px;
    font-size: 40px;
    line-height: 1;
  }
}
@media (max-width: 1024px) {
  .Pages__slider .page {
    position: relative;
  }
  .Pages__slider .page .container {
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    position: relative;
  }
  .Pages__slider .page .container .image {
    position: absolute;
  }
  .Pages__slider .page .content {
    width: calc(100% - 30px);
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    margin-top: -80px;
    z-index: 1;
  }
  .Pages__slider .page .title {
    font-size: 16px;
  }
  .Pages__slider .more {
    display: table;
    margin: 30px auto 0;
    font-size: 10px;
  }
}
@media (min-width: 1025px) {
  .tns-nav {
    display: none;
  }
}
@media (max-width: 1024px) {
  .tns-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
  .tns-nav button {
    width: 10px;
    height: 10px;
    margin: 4px;
    border: 2px solid #c2c2c2;
    border-radius: 50%;
  }
  .tns-nav button.tns-nav-active {
    background-color: #c2c2c2;
  }
}
.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}
.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}
.tns-no-calc {
  position: relative;
  left: 0;
}
.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}
.tns-autowidth {
  display: inline-block;
}
.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}
.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}
.tns-ovh {
  overflow: hidden;
}
.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}
.tns-transparent {
  opacity: 0;
  visibility: hidden;
}
.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}
.tns-normal,
.tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}
.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div,
.tns-vpfix > li {
  display: inline-block;
}
.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(7000% / 3);
  width: -moz-calc(7000% / 3);
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: '';
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
  height: 10px;
  float: left;
}
@media all {
  .Tags_popin .filters .title {
    margin-bottom: 0.5em;
  }
  .Tags_popin .filters .collection + .collection {
    margin-top: 3.5em;
  }
}
@media (min-width: 1025px) {
  .Tags_popin .filters .title {
    font-size: 20px;
  }
  .Tags_popin .filters .tag {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .Tags_popin .filters .title {
    font-size: 14px;
  }
  .Tags_popin .filters .tag {
    font-size: 11px;
  }
}
@media all {
  body.calculator > main {
    background-color: #f6f6f6;
  }
  body.calculator > main .calculators {
    margin-top: 3em;
  }
  body.calculator > main .calculators .tabs {
    font-size: 1.5em;
  }
  body.calculator > main .calculators .tabs .tab {
    padding: 0.5em 1em 2em 1em;
    margin-bottom: -1.5em;
    cursor: pointer;
    color: #707070;
  }
  body.calculator > main .calculators .tabs .tab.active {
    background-color: white;
    color: #100D4B;
    font-weight: 700;
  }
  body.calculator > main .calculators .calculator {
    padding: 3em;
    box-sizing: border-box;
    border-radius: 1.75em;
    background-color: white;
  }
  html:has(body.calculator) {
    box-sizing: initial !important;
  }
}
@media (min-width: 1025px) {
  body.calculator > main .calculators .tab,
  body.calculator > main .calculators .calculator {
    border-radius: 20px;
  }
  body.calculator > main .calculators .column-left {
    width: 430px;
  }
  body.calculator > main .calculators .column-right {
    width: 450px;
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  body.calculator > main .calculators .tab,
  body.calculator > main .calculators .calculator {
    border-radius: 15px;
  }
  body.calculator > main .calculators .column-right {
    margin-top: 20px;
  }
}
@media all {
  #embeddedMessagingFrame {
    z-index: 1000;
  }
}
@media all {
  .UI__footer_menu {
    background-color: #2c2b2b;
    color: white;
  }
  .UI__footer_menu .items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .UI__footer_menu .items .item + .item:before {
    content: '';
    height: 0.75em;
    width: 2px;
    display: inline-block;
    vertical-align: middle;
    background-color: currentColor;
  }
}
@media (min-width: 1025px) {
  .UI__footer_menu {
    padding: 55px 0;
    font-size: 16px;
  }
  .UI__footer_menu .items .item {
    margin: 5px 15px 5px 2px;
  }
  .UI__footer_menu .items .item + .item:before {
    margin-right: 15px;
  }
}
@media (max-width: 1024px) {
  .UI__footer_menu {
    padding: 26px 0;
  }
  .UI__footer_menu .items .item {
    margin: 4px 8px 4px 2px;
  }
  .UI__footer_menu .items .item + .item:before {
    margin-right: 8px;
  }
}
@media all {
  .UI__footer_partners {
    background-color: #f6f6f6;
  }
  .UI__footer_partners .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .UI__footer_partners .logo {
    position: relative;
  }
  .UI__footer_partners .logo img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
  }
}
@media (min-width: 1025px) {
  .UI__footer_partners .intro .title {
    width: 460px;
    margin: 0 auto;
    font-size: 45px;
  }
  .UI__footer_partners .logo {
    height: 130px;
    flex-basis: 15%;
  }
}
@media (max-width: 1024px) {
  .UI__footer_partners .intro .title {
    width: 200px;
    margin: 0 auto;
    font-size: 17px;
  }
  .UI__footer_partners .logos {
    margin-top: -20px;
  }
  .UI__footer_partners .logo {
    height: 70px;
    flex-basis: 33%;
    margin-top: 20px;
  }
}
@media all {
  .UI__header_burger-menu {
    width: calc(100% - 2 * 30px);
    margin: 0 auto;
    color: #100D4B;
    text-transform: lowercase;
    text-align: center;
    line-height: 1.5;
  }
  .UI__header_burger-menu .dropdown-icon {
    width: 0.4em;
    height: 0.4em;
    display: inline-block;
    margin-left: 0.15em;
    border: 0.15em solid #100D4B;
    border-top: 0;
    border-right: 0;
    border-radius: 0.1em;
    rotate: -45deg;
    translate: 0 -0.12em;
  }
  .UI__header_burger-menu .submenu {
    font-weight: normal;
  }
}
@media (min-width: 1025px) {
  .UI__header_burger-menu {
    max-width: 840px;
    padding-bottom: 100px;
    font-size: 45px;
  }
}
@media (max-width: 1024px) {
  .UI__header_burger-menu {
    max-width: 460px;
    padding-bottom: 70px;
    font-size: 24px;
  }
}
@keyframes hamburger_1 {
  0% {
    width: 100%;
    top: 0;
    right: 0;
    margin-top: 0;
    transform: none;
  }
  33% {
    width: 75%;
    top: 50%;
    right: 0;
    margin-top: -1px;
    transform: none;
  }
  66% {
    width: 75%;
    top: 50%;
    right: 0;
    margin-top: -1px;
    transform: none;
  }
  100% {
    width: 75%;
    top: 50%;
    right: 0;
    margin-top: -1px;
    margin-right: -1px;
    transform: rotate(45deg);
  }
}
@keyframes hamburger_2 {
  0% {
    bottom: 0;
    right: 0;
    margin-bottom: 0;
    transform: none;
  }
  33% {
    bottom: 50%;
    right: 0;
    margin-bottom: -1px;
    transform: none;
  }
  66% {
    bottom: 50%;
    right: 0;
    margin-bottom: -1px;
    transform: none;
  }
  100% {
    bottom: 50%;
    right: 0;
    margin-bottom: -1px;
    margin-right: -1px;
    transform: rotate(-45deg);
  }
}
@keyframes r_hamburger_1 {
  0% {
    width: 75%;
    top: 50%;
    right: 0;
    margin-top: -1px;
    margin-right: -1px;
    transform: rotate(45deg);
  }
  33% {
    width: 75%;
    top: 50%;
    right: 0;
    margin-top: -1px;
    transform: none;
  }
  66% {
    width: 75%;
    top: 50%;
    right: 0;
    margin-top: -1px;
    transform: none;
  }
  100% {
    width: 100%;
    top: 0;
    right: 0;
    margin-top: 0;
    transform: none;
  }
}
@keyframes r_hamburger_2 {
  0% {
    bottom: 50%;
    right: 0;
    margin-bottom: -1px;
    margin-right: -1px;
    transform: rotate(-45deg);
  }
  33% {
    bottom: 50%;
    right: 0;
    margin-bottom: -1px;
    transform: none;
  }
  66% {
    bottom: 50%;
    right: 0;
    margin-bottom: -1px;
    transform: none;
  }
  100% {
    bottom: 0;
    right: 0;
    margin-bottom: 0;
    transform: none;
  }
}
@media (min-width: 1025px) {
  body.scrolled .UI__header_side-buttons .side-panel,
  .UI__header_side-buttons:hover .side-panel {
    width: 165px;
  }
  .UI__header_side-buttons .side-panel .buttons {
    width: 165px;
  }
  .UI__header_side-buttons .side-panel .button {
    cursor: pointer;
  }
  .UI__header_side-buttons .side-panel .button:hover {
    background-color: #100D4B;
    border-color: #100D4B;
    color: white;
  }
  .UI__header_side-buttons .side-panel .button:hover .picto {
    filter: invert(1);
  }
  .UI__header_side-buttons .side-panel .caption {
    display: table-cell;
    vertical-align: middle;
    font-size: 11px;
  }
}
@media all {
  .UI__header_top-bar .slide-overflow {
    top: 0;
    left: 0;
    z-index: 1001;
    overflow-y: scroll;
    border-top: solid #D9E9F3;
    transition: cubic-bezier(0.2, 0.01, 0.45, 1) 0.4s all;
    box-shadow: 0px 6px 21px rgba(0, 0, 0, 0.16);
  }
  .UI__header_top-bar .slide-container {
    width: 100vw;
    min-height: 100vh;
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    background-color: #D9E9F3;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .slide-overflow {
    width: 100vw;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .burger-button {
    color: #100D4B;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .burger-button:before {
    animation: hamburger_1 cubic-bezier(1, -0.5, 0, 1.5) 0.4s forwards;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .burger-button:after {
    animation: hamburger_2 cubic-bezier(1, -0.5, 0, 1.5) 0.4s forwards;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .brand .main-logo {
    filter: invert(7%) sepia(84%) saturate(3541%) hue-rotate(242deg) brightness(82%) contrast(105%);
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .corner-buttons .color-swaps {
    filter: invert(7%) sepia(84%) saturate(3541%) hue-rotate(242deg) brightness(82%) contrast(105%);
  }
}
@media (min-width: 1025px) {
  .UI__header_top-bar .slide-overflow {
    border-top-width: 90px;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .brand {
    left: 50%;
    margin-left: -83px;
  }
  .UI__header_top-bar #burger-menu-input:checked ~ .container .punchline {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1024px) {
  .UI__header_top-bar .punchline {
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    z-index: 10001;
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
  }
  .UI__header_top-bar .punchline br {
    display: none;
  }
  .UI__header_top-bar .icons-container {
    width: calc(100% - 2 * 30px);
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    justify-content: center;
  }
  .UI__header_top-bar .slide-overflow {
    border-top-width: 52px;
  }
}
@media all {
  ._infinite-scroll-trigger {
    position: relative;
    top: -50vh;
  }
  ._rich-text * + h2,
  ._rich-text * + h3 {
    margin-top: 1em;
  }
  ._rich-text b {
    font-weight: 600;
  }
  ._rich-text a,
  ._rich-text u {
    text-decoration: underline;
  }
  ._rich-text i {
    font-style: italic;
  }
  ._nav-button {
    width: 1em;
    height: 1em;
    position: relative;
    margin-left: 0.375em;
    background-color: #100D4B;
    border-radius: 50%;
  }
  ._nav-button[disabled] {
    visibility: hidden;
  }
  ._nav-button .left,
  ._nav-button .right {
    width: 0.3em;
    height: 0.3em;
    position: absolute;
    top: calc(.35em - .5px);
    border: 2px solid white;
    border-top: none;
    border-right: none;
  }
  ._nav-button .left {
    left: calc(.4em - .5px);
    transform: rotate(45deg);
  }
  ._nav-button .right {
    right: calc(.4em - .5px);
    transform: rotate(-135deg);
  }
  ._intro .title {
    color: #100D4B;
  }
}
@media (min-width: 1025px) {
  ._empty {
    margin-top: 60px;
  }
  ._intro {
    margin-bottom: 60px;
  }
  ._intro .title {
    font-size: 60px;
  }
  ._intro .text {
    margin-top: 50px;
  }
  ._nav-button:hover {
    background-color: #D9E9F3 !important;
  }
  ._nav-button:hover .left,
  ._nav-button:hover .right {
    border-color: #100D4B !important;
  }
  ._zoomable .zoom-container {
    overflow: hidden;
  }
  ._zoomable .zooms {
    transition: transform 1s cubic-bezier(0.2, 0.01, 0.45, 1);
  }
  ._zoomable .zooms.fast {
    transition: transform 0.4s cubic-bezier(0.2, 0.01, 0.45, 1);
  }
  ._zoomable:hover .zooms {
    transform: scale(1.05);
  }
}
@media (max-width: 1024px) {
  ._empty {
    margin-top: 30px;
  }
  ._intro {
    margin-bottom: 30px;
  }
  ._intro .title {
    font-size: 26px;
  }
  ._intro .text {
    margin-top: 25px;
  }
}
@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: auto;
  -webkit-font-smoothing: subpixel-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;
  opacity: 1;
}
.plyr audio,
.plyr video {
  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;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions .plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}
.plyr__captions .plyr__caption 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:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
}
.plyr__control {
  background: 0 0;
  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 {
  outline: 0;
}
a.plyr__control {
  text-decoration: none;
}
a.plyr__control::after,
a.plyr__control::before {
  display: none;
}
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--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--video .plyr__control svg {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
.plyr__control--overlaid {
  background: rgba(255, 255, 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 {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover {
  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;
  justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__menu,
.plyr__controls .plyr__progress,
.plyr__controls .plyr__time,
.plyr__controls .plyr__volume,
.plyr__controls > .plyr__control {
  margin-left: 5px;
}
.plyr__controls .plyr__menu + .plyr__control,
.plyr__controls .plyr__progress + .plyr__control,
.plyr__controls > .plyr__control + .plyr__control,
.plyr__controls > .plyr__control + .plyr__menu {
  margin-left: 2px;
}
.plyr__controls > .plyr__control:first-child,
.plyr__controls > .plyr__control:first-child + [data-plyr=pause] {
  margin-left: 0;
  margin-right: auto;
}
.plyr__controls:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__controls .plyr__menu,
  .plyr__controls .plyr__progress,
  .plyr__controls .plyr__time,
  .plyr__controls .plyr__volume,
  .plyr__controls > .plyr__control {
    margin-left: 10px;
  }
}
.plyr--audio .plyr__controls {
  background: #fff;
  border-radius: inherit;
  color: #4f5b5f;
  padding: 10px;
}
.plyr--video .plyr__controls {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px 5px 5px;
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 35px 10px 10px;
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.plyr [data-plyr=airplay],
.plyr [data-plyr=captions],
.plyr [data-plyr=fullscreen],
.plyr [data-plyr=pip] {
  display: none;
}
.plyr--airplay-supported [data-plyr=airplay],
.plyr--captions-enabled [data-plyr=captions],
.plyr--fullscreen-enabled [data-plyr=fullscreen],
.plyr--pip-supported [data-plyr=pip] {
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.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 [role=menu] {
  padding: 7px;
}
.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}
.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}
.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4f5b5f;
  display: flex;
  font-size: 14px;
  padding: 4px 11px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control::after {
  border: 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 .plyr__control[role=menuitemradio] {
  padding-left: 7px;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::after,
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: '';
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
  width: 16px;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #1aafff;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before,
.plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(0, 0, 0, 0.1);
}
.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none;
}
.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 26px;
  color: #ffffff;
  display: block;
  height: 19px;
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  border: 0;
  border-radius: 2px;
  height: 2px;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}
.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  border: 0;
  height: 6px;
  margin-left: -7px;
  margin-top: -2px;
  position: relative;
  transition: all 0.2s ease;
  width: 14px;
  -webkit-appearance: none;
  cursor: pointer;
}
.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 2px;
  height: 2px;
  transition: box-shadow 0.3s ease;
  -moz-user-select: none;
  user-select: none;
}
.plyr--full-ui input[type=range]::-moz-range-thumb {
  border: 0;
  height: 2px;
  position: relative;
  transition: all 0.2s ease;
  width: 14px;
  -webkit-appearance: none;
  cursor: pointer;
}
.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2px;
  height: 2px;
}
.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2px;
  height: 2px;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  color: transparent;
}
.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: 0 0;
  border: 0;
  border-radius: 2px;
  height: 2px;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
}
.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  border: 0;
  border-radius: 2px;
  height: 2px;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
  user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type=range]::-ms-thumb {
  border: 0;
  height: 2px;
  position: relative;
  transition: all 0.2s ease;
  width: 14px;
  -webkit-appearance: none;
  cursor: pointer;
}
.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 {
  outline: 0;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  outline: 0;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  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--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__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}
.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}
.plyr__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;
  left: 50%;
  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.plyr__tab-focus .plyr__tooltip,
.plyr .plyr__control:hover .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 {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  transform: translateX(50%);
}
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0, 0) scale(1);
}
.plyr--video {
  background: #000;
  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__progress {
  flex: 1;
  left: 6.5px;
  margin-right: 13px;
  position: relative;
}
.plyr__progress input[type=range],
.plyr__progress__buffer {
  margin-left: -7px;
  margin-right: -7px;
  width: calc(100% + 13px);
}
.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;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 2px;
  left: 0;
  margin-top: -1px;
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  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__volume {
  align-items: center;
  display: flex;
  flex: 1;
  position: relative;
}
.plyr__volume input[type=range] {
  margin-left: 5px;
  position: relative;
  z-index: 2;
}
@media (min-width: 480px) {
  .plyr__volume {
    max-width: 90px;
  }
}
@media (min-width: 768px) {
  .plyr__volume {
    max-width: 110px;
  }
}
.plyr--is-ios .plyr__volume {
  display: none !important;
}
.plyr--is-ios.plyr--vimeo [data-plyr=mute] {
  display: none !important;
}
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0!important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0!important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0!important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:fullscreen {
  background: #000;
  border-radius: 0!important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-webkit-full-screen video {
  height: 100%;
}
.plyr:-moz-full-screen video {
  height: 100%;
}
.plyr:-ms-fullscreen video {
  height: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}
.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}
.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}
.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  width: 100%;
}
.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}
.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}
.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}
.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  top: 50%;
  transform: translateY(-50%);
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}
.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}
.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
  }
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.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--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;
  }
}
.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--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;
  }
}
.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--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--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: 5px;
  left: 0;
  margin: -2.5px 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}
.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.plyr__preview-thumb::before {
  border-left: 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__preview-thumb__image-container {
  background: #b7c5cd;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}
.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 3px 6px;
}
.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}
.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr--no-transition {
  transition: none !important;
}
.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0!important;
  height: 1px!important;
  padding: 0!important;
  position: absolute!important;
  width: 1px !important;
}
.plyr [hidden] {
  display: none !important;
}
.plyr__progress__container {
  width: 100%;
}
@media all {
  body.sitemap > main .pages .parent {
    font-size: 1.5em;
    color: #100D4B;
  }
  body.sitemap > main .pages .row + .row {
    margin-top: 1.75em;
  }
}
@media (min-width: 1025px) {
  body.sitemap > main {
    background-color: #f6f6f6;
  }
  body.sitemap > main .children {
    padding-left: 20px;
  }
  body.sitemap > main .pages {
    margin-top: 90px;
  }
  body.sitemap > main .pages a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1024px) {
  body.sitemap > main .children {
    padding-left: 15px;
  }
  body.sitemap > main .pages {
    margin-top: 45px;
  }
}
[data-link-extends]:hover {
  cursor: pointer;
}
