/*////////////////////////////////////////////////////////////////////////////// NAVIGATION //////*/

/*////////////////////////////////////////////////////////////////// INTERACTIVE COMPONENTS //////*/
.c-interactive-zoom {
    --c-interactive__background-color: #ffffff;
    --c-interactive__font-color: #000000;
    --c-interactive__loading-gif: url( '../images/loader.gif' ) no-repeat;

    background: #ffffff;
}

.c-interactive__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.c-interactive__button {
    position: absolute;
    z-index: 999;
    top: 0;
    right: 0;
    padding: 0.68rem 0.88rem 0 0;
}

.c-interactive__button--is-inactive {
    display: none;
}

.c-interactive__stage {
    --c-interactive__stage-width: 100%;
    --c-interactive__stage-height: 75%;

    --c-interactive__z-depth: 512px;
    --c-interactive__perspective: 128px;
    --c-interactive__perspective-origin: 50% 50%;

    --c-interactive__text-align: 'center';

    position: fixed;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    width: var( --c-interactive__stage-width );
    height: var( --c-interactive__stage-height );
}

.c-interactive__stage--loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
    backface-visibility: hidden;
    background: var( --c-interactive__loading-gif );
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition-property: opacity;
    transition-duration: var( --c-page__transition-duration );
    transition-delay: 1s;
    transition-timing-function: var( --c-page__transition-timing-function-entering );
    width: 36px;
    height: 36px;
    display: block;
    opacity: 1;
}

.c-interactive__stage--loading-done::before {
    opacity: 0;
}

.c-interactive__background {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateZ( 0 );
    backface-visibility: hidden;
    background: var( --c-interactive__background-color );
    opacity: 0;
    transition-property: opacity;
    transition-duration: 512ms;
    transition-timing-function: ease-in;
}

.c-interactive__articles {
    /* display: none; */
    position: fixed;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate3d( -50%, -50%, 0px );
    backface-visibility: hidden;
    transition-property: opacity;
    transition-duration: 333ms;
    transition-timing-function: ease-in;
    color: #000;
    background: #191919;
    box-shadow: var(--c-page__box-shadow);
    opacity: 0;
}

.c-interactive__articles-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    width: 90%;
    height: 85%;
    background: #fff;
}

.c-interactive__slice {
    --c-interactive__slice--top: 50%;
    --c-interactive__slice--top-mobile: 50%;

    --c-interactive__slice--left: 50%;
    --c-interactive__slice--left-mobile: 50%;

    --c-interactive__slice--perspective: var( --c-interactive__perspective );
    --c-interactive__slice--perspective-mobile: var( --c-interactive__perspective );

    --c-interactive__slice--perspective-origin: var( --c-interactive__perspective-origin );
    --c-interactive__slice--perspective-origin-mobile: var( --c-interactive__perspective-origin );

    --c-interactive__slice--text-align: var( --c-interactive__text-align );

    display: none;
    position: absolute;
    top: var( --c-interactive__slice--top );
    left: var( --c-interactive__slice--left );
    transform: translate( -50%, -50% );
    transform-origin: center center;
    width: 100%;
    height: 100%;
    perspective: var( --c-interactive__slice--perspective );
    perspective-origin: var( --c-interactive__slice--perspective-origin );
}

.c-interactive__articles .c-interactive__slice {
    display: block;
    opacity: 0;
    padding: 2.08rem 1.68rem;
}

.c-interactive__slice-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.c-interactive__slice-stage--has-cover::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c-interactive__slice:first-child .c-interactive__slice-stage::after {
    content: 'SCROLL TO START';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate3d( -50%, -100%, 0px );
    backface-visibility: hidden;
    transition-property: opacity;
    transition-duration: 386ms;
    transition-timing-function: ease-in;
    font-family: 'questa-sans';
    font-weight: 700;
    font-size: 0.48rem;
    font-style: normal;
    font-feature-settings: 'calt', 'clig', 'kern', 'liga', 'locl', 'rlig';
    letter-spacing: 0.125rem;
    word-spacing: 0.25rem;
    opacity: 0;
}

.c-interactive__slice:first-child .c-interactive__slice-stage--show-instruction::after {
    opacity: 1;
}

.c-interactive__slice-stage--article {
    overflow: hidden;
}

.c-interactive__content {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    transform-origin: center center;
    width: 100%;
    max-width: 1024px;
    opacity: 0;
}

.c-interactive__content--article {
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    height: 100%;
    padding: 0 2.08rem 0 0;
    opacity: 1;
}

.c-interactive__content--article::-webkit-scrollbar-track {
    background-color: var(--c-page__color-grey-light);
}

.c-interactive__content--article::-webkit-scrollbar {
    width: 3px;
    background-color: var(--c-page__color-grey-light);
}

.c-interactive__content--article::-webkit-scrollbar-thumb {
    background-color: var(--c-page__color-dark);
}

.c-interactive__content-source {
    color: var( --c-interactive__font-color );
    transition-property: color;
    transition-duration: 768ms;
    transition-timing-function: ease-in;
}

.c-interactive__media-control {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.c-interactive__eq {
    position: absolute;
    bottom: 1%;
    right: 1%;
    width: 20px;
    height: 20px;
}

.c-interactive__eq-bar {
    position: absolute;
    bottom: 0px;
    fill: #555;
    animation-name: c-interactive__eq;
    animation-fill: forwards;
    animation-iteration-count: infinite;
    transform-origin: 8px 16px;
    -webkit-transform-origin: 8px 16px;
    rx:0;
    ry:0;
}

.c-interactive__media-control--is-activated .c-interactive__eq-bar {
    fill: #fff;
}

.c-interactive__button-eq--is-activated .c-interactive__eq-bar {
    fill: #000;
}

.c-interactive__eq-bar:nth-child(1) {
  animation-duration: 0.5s;
}

.c-interactive__eq-bar:nth-child(2)  {
  animation-duration: 1.3s;
}

.c-interactive__eq-bar:nth-child(3)  {
  animation-duration: 0.7s;
}

@keyframes c-interactive__eq {
    0% {
    //height: 20px;
    transform: scaleY(1);
    }
    50% {
    //height: 3px;
    transform: scaleY(.5);
    }
    100% {
    //height: 20px;
    transform: scaleY(1);
    }
}

/*/////////////////////////////////////////////////////////////////////// GUTENBERG HEADING //////*/
.c-interactive__content-source h1[class=''],
.c-interactive__content-source h2[class=''],
.c-interactive__content-source h3[class=''],
.c-interactive__content-source h4[class=''],
.c-interactive__content-source h5[class=''],
.c-interactive__content-source h6[class=''],
.c-interactive__content-source h1:not([class]),
.c-interactive__content-source h2:not([class]),
.c-interactive__content-source h3:not([class]),
.c-interactive__content-source h4:not([class]),
.c-interactive__content-source h5:not([class]),
.c-interactive__content-source h6:not([class]) {
    max-width: none;
    margin: 1.38rem auto;
    padding: 0;
    font-family: 'questa-sans';
    font-weight: 900;
    font-size: 1.68rem;
    font-style: normal;
    font-feature-settings: 'calt', 'clig', 'kern', 'liga', 'locl', 'rlig';
    letter-spacing: 0.25rem;
    word-spacing: 0.25rem;
    line-height: 1;
    text-align: var( --c-interactive__slice--text-align );
}

.c-interactive__content--article h1[class=''],
.c-interactive__content--article h2[class=''],
.c-interactive__content--article h3[class=''],
.c-interactive__content--article h4[class=''],
.c-interactive__content--article h5[class=''],
.c-interactive__content--article h6[class=''],
.c-interactive__content--article h1:not([class]),
.c-interactive__content--article h2:not([class]),
.c-interactive__content--article h3:not([class]),
.c-interactive__content--article h4:not([class]),
.c-interactive__content--article h5:not([class]),
.c-interactive__content--article h6:not([class]) {
    margin: 0 auto 1.38rem;
    padding: 0 1.06rem;
    font-size: 1.38rem;
    letter-spacing: -0.01rem;
    word-spacing: 0.02rem;
    line-height: 1.5;
}

/*///////////////////////////////////////////////////////////////////// GUTENBERG PARAGRAPH //////*/
.c-interactive__content-source p[class='']:first-of-type,
.c-interactive__content-source p:not([class]):first-of-type,
.c-interactive__content-source p.has-text-align-center:first-of-type,
.c-interactive__content-source p.has-text-align-left:first-of-type,
.c-interactive__content-source p.has-text-align-right:first-of-type {
    margin: 0 auto;
}

.c-interactive__content-source p[class=''],
.c-interactive__content-source p:not([class]),
.c-interactive__content-source p.has-text-align-center,
.c-interactive__content-source p.has-text-align-left,
.c-interactive__content-source p.has-text-align-right {
    max-width: none;
    text-align: var( --c-interactive__slice--text-align );
    margin: 1.38rem auto 0;
    padding: 0;
    font-size: 1rem;
    letter-spacing: 0.025rem;
    word-spacing: 0.025rem;
    line-height: 1.58;
}

.c-interactive__content--article p[class=''],
.c-interactive__content--article p:not([class]),
.c-interactive__content--article p.has-text-align-center,
.c-interactive__content--article p.has-text-align-left,
.c-interactive__content--article p.has-text-align-right {
    margin: 1.38em auto 0;
    padding: 0 1.06rem;
    font-size: 1rem;
}

/*///////////////////////////////////////////////////////////////////////// GUTENBERG EMBED //////*/
.c-interactive .c-embed {
    margin: 0 auto;
    padding: 0;
}

/*//////////////////////////////////////////////////////////////////////////// MNMNTL IMAGE //////*/
.c-interactive__content .mnmntl-image {
    margin: 0 auto;
    padding: 0;
}

.c-interactive__content .mnmntl-image__image[data-orientation="portrait"] {
    max-height: 75vh;
}

.c-interactive__content .mnmntl-image__caption-wrapper {
    margin: 1rem 0 0;
    color: var( --c-interactive__font-color );
}

/*////////////////////////////////////////////////////////////////////// MNMNTL IMAGE GROUP //////*/
.c-interactive .mnmntl-image-group__media {
    cursor: pointer;
}

/*////////////////////////////////////////////////////////////////////////////////// FOOTER //////*/
.c-interactive__footer {
    position: fixed;
    z-index: 5;
    bottom: 0;
    right: 0;
    transform: translateZ( 0 );
    backface-visibility: hidden;
    filter: invert( 0 );
    transition-property: filter;
    transition-duration: 768ms;
    transition-timing-function: ease-in;
    padding: 0 18px 0 0;
}

.c-interactive__footer-buttons {
    display: flex;
}

.c-interactive__footer-buttons .c-button {
    flex: 0 1 100%;
}

.c-interactive__footer-buttons .c-icon {
    padding: 18px 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-interactive__footer-buttons .c-icon--eq,
.c-interactive__footer-buttons .c-icon--A {
    /* padding: 4px 0 4px 28px; */
}

.c-interactive__footer-buttons .c-icon--fb {
    /* padding: 0 0 8px 25px; */
}

.c-interactive__footer-buttons .c-icon__img {
    width: 24px;
    height: 24px;
}

.c-interactive__footer-buttons .c-icon--A .c-icon__img {
    /*
    width: 21px;
    height: 18px;
    */
}

.c-interactive__footer-buttons .c-icon--eq .c-interactive__eq {
    position: relative;
}

.c-interactive__footer-buttons .c-icon--eq .c-interactive__eq-bar {
    animation-name: none;
}

.c-interactive__footer-buttons .c-interactive__button-eq--is-activated .c-interactive__eq-bar {
    animation-name: c-interactive__eq;
    /* fill: #fff; */
}