@-moz-keyframes arrow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50px);
    }
}
@-webkit-keyframes arrow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50px);
    }
}
@-o-keyframes arrow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50px);
    }
}
@keyframes arrow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50px);
    }
}
@-moz-keyframes arrow__second {
    0% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0);
    }
}
@-webkit-keyframes arrow__second {
    0% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0);
    }
}
@-o-keyframes arrow__second {
    0% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes arrow__second {
    0% {
        transform: translateX(50px);
    }
    100% {
        transform: translateX(0);
    }
}
@-moz-keyframes arrow__reverse {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(50px);
    }
}
@-webkit-keyframes arrow__reverse {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(50px);
    }
}
@-o-keyframes arrow__reverse {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(50px);
    }
}
@keyframes arrow__reverse {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(50px);
    }
}
@-moz-keyframes arrow__reverse_second {
    0% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0px);
    }
}
@-webkit-keyframes arrow__reverse_second {
    0% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0px);
    }
}
@-o-keyframes arrow__reverse_second {
    0% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0px);
    }
}
@keyframes arrow__reverse_second {
    0% {
        transform: translateX(-50px);
    }
    100% {
        transform: translateX(0px);
    }
}
@-moz-keyframes arrow__bottom_first {
    0% {
        transform: translate(1px, 0px);
    }
    100% {
        transform: translate(1px, 50px);
    }
}
@-webkit-keyframes arrow__bottom_first {
    0% {
        transform: translate(1px, 0px);
    }
    100% {
        transform: translate(1px, 50px);
    }
}
@-o-keyframes arrow__bottom_first {
    0% {
        transform: translate(1px, 0px);
    }
    100% {
        transform: translate(1px, 50px);
    }
}
@keyframes arrow__bottom_first {
    0% {
        transform: translate(1px, 0px);
    }
    100% {
        transform: translate(1px, 50px);
    }
}
@-moz-keyframes arrow__bottom_second {
    0% {
        transform: translate(1px, -50px);
    }
    100% {
        transform: translate(1px, 0px);
    }
}
@-webkit-keyframes arrow__bottom_second {
    0% {
        transform: translate(1px, -50px);
    }
    100% {
        transform: translate(1px, 0px);
    }
}
@-o-keyframes arrow__bottom_second {
    0% {
        transform: translate(1px, -50px);
    }
    100% {
        transform: translate(1px, 0px);
    }
}
@keyframes arrow__bottom_second {
    0% {
        transform: translate(1px, -50px);
    }
    100% {
        transform: translate(1px, 0px);
    }
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
html,
html a {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}
html {
    font-size: 18px;
}
html,
body {
    margin: 0;
    padding: 0;
}
body {
    width: 100vw;
    overflow-x: hidden !important;
}
svg {
    transition: 0.3s all linear;
}
p {
    margin: 0;
}
p:not(:last-child) {
    margin-bottom: 30px;
}
[data-whatintent='mouse'] button:focus,
[data-whatintent='touch'] button:focus {
    outline: none;
}
.paragraph p + ul {
    margin-top: -10px;
}
.paragraph ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}
.paragraph ul li {
    position: relative;
    padding-left: 55px;
}
.paragraph ul li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 27px;
    border-radius: 50%;
    width: 3px;
    height: 3px;
    background-color: currentColor;
}
@media screen and (min-width: 768px) {
    .paragraph ul li:before {
        top: 15px;
    }
}
#app {
    position: relative;
    background-size: 200vw;
    background-repeat: no-repeat;
    background-position: top center;
}
#app.has-bg:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 86vw;
    background-image: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.5) 0%,
        #fff 100%
    );
}
#app.has-bg .bkg-grid {
    z-index: 5;
    mix-blend-mode: multiply;
}
#app.has-bg .app__inner {
    position: relative;
    z-index: 10;
}
@media screen and (min-width: 768px) {
    #app {
        background-size: 150vw;
    }
    #app.has-bg:after {
        height: 65vw;
    }
}
@media screen and (min-width: 1024px) {
    #app {
        background-size: 100vw;
    }
    #app.has-bg:after {
        height: 43vw;
    }
}
@media screen and (min-width: 1024px) {
    #app.transitioned-page {
        width: 100vw;
        height: 100vh;
    }
}
.app__inner {
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    background-repeat: no-repeat;
}
.block {
    padding-right: 10px;
    padding-left: 10px;
}
@media screen and (min-width: 768px) {
    .block {
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .block {
        padding-right: 0;
        padding-left: 0;
    }
}
.block--left {
    padding-right: 10px;
    padding-left: 0;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .block--left {
        padding-right: 20px;
        padding-left: 0;
    }
}
@media screen and (min-width: 1024px) {
    .block--left {
        padding-right: 0;
        padding-left: 0;
    }
}
.block--right {
    padding-right: 0;
    padding-left: 10px;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .block--right {
        padding-right: 0;
        padding-left: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .block--right {
        padding-right: 0;
        padding-left: 0;
    }
}
.hide-small {
    display: none;
}
@media screen and (min-width: 1024px) {
    .hide-small {
        display: inline-block;
    }
}
@media screen and (min-width: 1024px) {
    .hide-medium {
        display: none;
    }
}
.show-medium {
    display: none;
}
@media screen and (min-width: 1024px) {
    .show-medium {
        display: block;
    }
}
.hide-visually {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}
.stop-scroll {
    height: 100vh;
    overflow: hidden !important;
    position: fixed;
}
@media screen and (min-width: 1024px) {
    .stop-scroll {
        height: auto;
        position: static;
        overflow: hidden !important;
    }
}
.img-gradient {
    position: relative;
}
.img-gradient:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: screen;
    background-image: linear-gradient(
        314deg,
        rgba(255, 0, 0, 0.5),
        rgba(255, 0, 0, 0)
    );
}
@media screen and (-ms-high-contrast: active),
    screen and (-ms-high-contrast: none) {
    .img-gradient:after {
        opacity: 0.25;
    }
}
@supports (-ms-ime-align: auto) {
    .img-gradient:after {
        opacity: 0.25;
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}
.no-scroll-y {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.hidden {
    display: none !important;
}
@media screen and (min-width: 1024px) {
    .transitioned-page .page-title {
        opacity: 0;
    }
    .transitioned-page .page-title div {
        transform: translateX(-100%);
    }
}
.page-title {
    overflow: hidden;
    margin: 0;
    padding-bottom: 21px;
    letter-spacing: 0;
    font-weight: 700;
    font-size: 1.666666666666667rem;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    color: #fff;
}
@media screen and (min-width: 768px) {
    .page-title {
        font-size: 4.444444444444445rem;
    }
}
.page-title--white {
    color: #fff;
}
.page-title--black {
    color: #333745;
}
.title {
    margin: 0;
    text-decoration: none;
    letter-spacing: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1em;
    color: #333745;
}
.title--level-2 {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 4.166666666666667rem;
}
@media screen and (min-width: 1280px) {
    .title--level-2 {
        font-size: 5rem;
    }
}
.title--level-3 {
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
}
@media screen and (min-width: 1280px) {
    .title--level-3 {
        font-size: 2.4rem;
    }
}
.title--level-4 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.388888888888889rem;
}
@media screen and (min-width: 1280px) {
    .title--level-4 {
        font-size: 1.666666666666667rem;
    }
}
.title--level-4b {
    font-weight: 600;
    font-size: 1.666666666666667rem;
    font-family: 'Playfair Display', serif;
}
@media screen and (min-width: 1280px) {
    .title--level-4b {
        font-size: 2rem;
    }
}
.title--level-4c {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 2.666666666666667rem;
    font-family: 'Inter', sans-serif;
}
@media screen and (min-width: 768px) {
    .title--level-4c {
        font-size: 3.333333333333333rem;
    }
}
@media screen and (min-width: 1024px) {
    .title--level-4c {
        font-size: 2.666666666666667rem;
    }
}
@media screen and (min-width: 1280px) {
    .title--level-4c {
        font-size: 3.333333333333333rem;
    }
}
.title--level-4c--variation {
    font-size: 1.666666666666667rem;
}
.title--nav {
    font-size: 1.666666666666667rem;
}
.title--paragraph {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.111111111111111rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2em;
}
.title--profile {
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}
@media screen and (min-width: 768px) {
    .title--profile {
        font-size: 2.66rem;
    }
}
.title--font-base {
    font-family: 'Inter', sans-serif;
}
.title--white {
    color: #fff;
}
.title--gray-light {
    color: #eee;
}
.title--no-margin {
    margin: 0;
}
.title--bold {
    font-weight: 700;
}
.title-content {
    margin: 0 0 30px;
    font-size: 1.666666666666667rem;
    color: #333745;
    line-height: 1.2em;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}
@media screen and (min-width: 768px) {
    .title-content {
        margin-bottom: 50px;
        font-size: 3.333333333333333rem;
    }
}
.subtitle-content {
    margin: 0 0 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.666666666666667rem;
    color: #333745;
    line-height: 1.2;
}
@media screen and (min-width: 768px) {
    .subtitle-content {
        margin-bottom: 30px;
        font-size: 2rem;
    }
}
.title-footer {
    margin: 0 0 30px;
    max-width: 240px;
    font-weight: 600;
    font-size: 1.111111111111111rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}
.title-footer--variation {
    margin: 0;
    font-weight: 600;
    font-size: 1.111111111111111rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
}
.title-footer-follow {
    margin: 0;
    font-weight: 600;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.title-footer-follow:hover {
    color: #333745;
}
.pre-title {
    margin-bottom: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #f00;
}
.number {
    margin: 0;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 13.3rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #f00;
}
@media screen and (min-width: 1024px) {
    .number {
        font-size: 5.33rem;
    }
}
@media screen and (min-width: 1280px) {
    .number {
        font-size: 11.11111111111111rem;
    }
}
.number--small {
    margin-top: 20px;
    font-size: 4.166666666666667rem;
    font-size: 0.722222222222222rem;
    color: #333745;
    background-color: #fff;
    display: table;
    position: relative;
}
@media screen and (min-width: 768px) {
    .number--small {
        font-size: 0.722222222222222rem;
    }
}
@media screen and (min-width: 1024px) {
    .number--small {
        font-size: 4.166666666666667rem;
        font-size: 0.722222222222222rem;
    }
}
@media screen and (min-width: 1280px) {
    .number--small {
        font-size: 5rem;
        font-size: 0.722222222222222rem;
    }
}
.number--narrow {
    margin-top: 20px;
    font-size: 2rem;
    color: #333745;
}
@media screen and (min-width: 768px) {
    .number--narrow {
        font-size: 4rem;
    }
}
.number--medium {
    font-size: 6rem;
    color: #777;
    opacity: 0.2;
}
@media screen and (min-width: 768px) {
    .number--medium {
        font-size: 8.3rem;
    }
}
@media screen and (min-width: 1024px) {
    .number--medium {
        font-size: 8rem;
    }
}
@media screen and (min-width: 1280px) {
    .number--medium {
        font-size: 11.11111111111111rem;
    }
}
.number--calendar {
    font-size: 6rem;
}
@media screen and (min-width: 1024px) {
    .number--calendar {
        font-size: 5.33rem;
    }
}
@media screen and (min-width: 1280px) {
    .number--calendar {
        font-size: 13.3rem;
    }
}
.catchphrase {
    margin: 0;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 2.66rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #333745;
}
@media screen and (min-width: 768px) {
    .catchphrase {
        font-size: 5.32rem;
    }
}
@media screen and (min-width: 1024px) {
    .catchphrase {
        font-size: 5.985rem;
    }
}
.nav-title {
    display: block;
    margin: 0 0 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3.333333333333333rem;
    line-height: 1;
}
@media screen and (max-width: 1279px) {
    .nav-title {
        font-size: 3rem;
    }
}
.description {
    margin: 0;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #595959;
    line-height: 1.444444444444444rem;
}
@media screen and (min-width: 768px) {
    .description {
        font-size: 1.111111111111111rem;
        line-height: 1.666666666666667rem;
    }
}
.description--black {
    color: #333745;
}
.description--red {
    color: #f00;
    font-family: 'Playfair Display', serif;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
    opacity: 1 !important;
}
@media screen and (min-width: 1280px) {
    .description--red {
        line-height: 1.944444444444444rem;
    }
}
.description--nav {
    color: #333745;
    font-family: 'Playfair Display', serif;
    font-size: 1.222222222222222rem;
    opacity: 1 !important;
}
@media screen and (min-width: 1280px) {
    .description--nav {
        font-size: 1.222222222222222rem;
    }
}
.headline {
    display: block;
    margin-top: 0;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 0.277777777777778rem;
    font-weight: 600;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.333333333333333rem;
    color: #333745;
}
@media screen and (min-width: 1024px) {
    .headline {
        font-size: 0.833333333333333rem;
        letter-spacing: 15px;
    }
}
.headline--black {
    letter-spacing: 0;
    font-size: 0.7rem;
    line-height: 1em;
    color: #333745;
}
@media screen and (min-width: 1280px) {
    .headline--black {
        font-size: 0.7rem;
    }
}
.headline--red {
    color: #f00;
}
.headline--no-margin {
    margin: 0;
}
.headline--gray {
    font-size: 0.7rem;
    color: #777;
}
@media screen and (min-width: 1280px) {
    .headline--gray {
        font-size: 0.7rem;
    }
}
.headline--narrow {
    margin-top: 0;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 2px;
    color: #aaa;
}
@media screen and (min-width: 1280px) {
    .headline--narrow {
        font-size: 0.833333333333333rem;
    }
}
.headline--very-narrow {
    margin-top: 0;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    color: #aaa;
}
@media screen and (min-width: 1280px) {
    .headline--very-narrow {
        font-size: 0.833333333333333rem;
    }
}
.headline--uppercase {
    text-transform: uppercase;
}
.headline--centered {
    text-align: center;
}
.bkg-text {
    margin: 0;
    letter-spacing: 0;
    font-weight: 700;
    font-size: 9.25925925925926rem;
    font-family: 'Inter', sans-serif;
    line-height: 0.9em;
    color: #eee;
}
@media screen and (min-width: 1280px) {
    .bkg-text {
        font-size: 11.11111111111111rem;
    }
}
.bkg-text-link {
    margin: 0;
    text-decoration: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #333745;
    transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.bkg-text-link:hover {
    color: #f00;
}
.date {
    margin-bottom: 1.111111111111111rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 0.722222222222222rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.25;
    color: #333745;
}
.date--lighter {
    color: #aaa;
}
.filter-date {
    margin: 0;
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #aaa;
    transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.filter-date--active {
    color: #f00;
}
@media screen and (min-width: 1024px) {
    .filter-date:hover {
        color: #f00;
    }
}
@media screen and (min-width: 1280px) {
    .filter-date {
        font-size: 0.866666666666667rem;
    }
}
.filter-toggle {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.722222222222222rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #777;
}
.info1 {
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 0;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.666666666666667rem;
    color: #6d6f72;
    display: block;
    text-align: left;
}
.content-quote .info1 {
    text-align: center;
    font-size: 1rem;
}
.info1--menu {
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    color: #fff;
}
.info2 {
    margin: 0;
    letter-spacing: 0.122222222222222rem;
    font-weight: 400;
    font-size: 0.722222222222222rem;
    font-family: 'Inter', sans-serif;
    line-height: 1rem;
    color: #777;
    text-align: center;
}
.legend {
    margin: 0;
    letter-spacing: 0;
    font-weight: 700;
    font-size: 0.722222222222222rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4em;
    color: #333745;
}
.legend .legend__job {
    font-weight: 400;
    color: #777;
}
.legend--article {
    font-weight: 400;
    color: #777;
    display: inline-block;
    margin-top: 0.5rem;
    letter-spacing: 2.2px;
}
.paragraph {
    letter-spacing: 0;
    font-weight: 400;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 2em;
    color: #6d6f72;
}
.paragraph p:not(:last-child) {
    margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .paragraph p:not(:last-child) {
        margin-bottom: 30px;
    }
}
.paragraph a {
    border-bottom: 1px solid #333745;
    text-decoration: none;
    color: #333745;
    transition: all 400ms ease-in-out;
}
.paragraph a:hover {
    border-color: #f00;
    color: #f00;
}
.paragraph--white {
    color: #fff;
}
.quote-placeholder {
    margin-top: 0;
    margin-bottom: 170px;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 1.388888888888889rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2em;
    color: #333745;
}
@media screen and (min-width: 768px) {
    .quote-placeholder {
        font-size: 1.666666666666667rem;
    }
}
.quote-placeholder--white {
    color: #fff;
}
.quote {
    position: relative;
    margin: 100px 0 0 0;
    padding-bottom: 50px;
    letter-spacing: initial;
    font-weight: 700;
    font-size: 1.222222222222222rem;
    font-family: 'Playfair Display', serif;
    line-height: 33px;
    color: #333745;
    text-align: center;
}
@media screen and (min-width: 1024px) {
    .quote {
        font-size: 1.666666666666667rem;
    }
}
.quote:before {
    content: '\2018';
    position: absolute;
    top: -42px;
    left: -13vw;
    font-size: 3.333333333333333rem;
    line-height: 108px;
}
@media screen and (min-width: 375px) {
    .quote:before {
        left: 0;
    }
}
@media screen and (min-width: 768px) {
    .quote:before {
        left: -20px;
    }
}
@media screen and (min-width: 1024px) {
    .quote:before {
        top: -43px;
        left: -20px;
        font-size: 5rem;
    }
}
@media screen and (min-width: 1280px) {
    .quote:before {
        left: -20px;
    }
}
@media screen and (min-width: 1600px) {
    .quote:before {
        left: -20px;
    }
}
.quote:after {
    content: '\2019';
    position: absolute;
    bottom: -27px;
    right: -13vw;
    font-size: 3.333333333333333rem;
    line-height: 108px;
    bottom: -20px;
}
@media screen and (min-width: 375px) {
    .quote:after {
        right: 0;
    }
}
@media screen and (min-width: 768px) {
    .quote:after {
        right: -20px;
    }
}
@media screen and (min-width: 1024px) {
    .quote:after {
        right: -20px;
        font-size: 5rem;
    }
}
@media screen and (min-width: 1280px) {
    .quote:after {
        right: -20px;
    }
}
@media screen and (min-width: 1600px) {
    .quote:after {
        right: -20px;
    }
}
.quote strong {
    color: #f00;
}
.quote-info {
    font-family: 'Inter-condensed', sans-serif;
    color: #f00;
    font-size: 0.888888888888889rem;
    line-height: 24px;
    text-align: right;
}
.error,
.form-label {
    letter-spacing: 0;
    font-weight: 600;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #f00;
}
.error--gray,
.form-label--gray {
    color: #777;
}
.error {
    font-size: 0.722222222222222rem;
}
.btn {
    margin: 0;
    text-decoration: none;
    color: #333745;
}
.btn__wording {
    letter-spacing: 0;
    font-weight: 600;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
}
.btn--big .btn__wording {
    margin-top: 50px;
    font-size: 1.111111111111111rem;
    margin-bottom: 80px;
}
.btn--gray {
    color: #aaa;
}
.btn--gray-darker {
    color: #333745;
}
.btn--white {
    color: #fff;
}
.btn--red {
    color: #f00;
}
.btn--important {
    color: #f00;
}
@media screen and (min-width: 1280px) {
    .btn--important .btn__wording {
        font-size: 1.111111111111111rem;
    }
}
.footer-site {
    display: block;
    margin: 0;
    border-top: 1px solid #eee;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.7rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #aaa;
    transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (min-width: 768px) {
    .footer-site {
        padding-right: 50px;
        padding-left: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .footer-site {
        border-top: 0;
        padding-right: 0;
        padding-left: 0;
        text-align: center;
    }
}
.footer-site--red {
    color: #f00;
}
.footer-site:hover {
    color: #333745;
}
.footer-link {
    display: block;
    font-size: 0.888888888888889rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.footer-link:hover {
    color: #333745;
}
.footer-link--bold {
    font-weight: 600;
}
.footer-link--bold:hover {
    color: #aaa;
}
.tg-link {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #333745;
    transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.tg-link:hover {
    color: #f00;
}
.tg-link span {
    display: inline-block;
}
.tg-link--after span:after {
    content: '';
    display: block;
    margin-top: 10px;
    width: calc(100% + 10px);
    height: 2px;
    background: #f00;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
}
.tg-link--after:hover span:after {
    transform: scaleX(1);
}
.scroll-tag {
    margin: 0;
    text-decoration: none;
    color: #333745;
}
.scroll-tag__text {
    letter-spacing: 0;
    font-weight: 700;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
}
.label {
    text-decoration: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #333745;
}
.label--bold {
    font-weight: 700;
}
.label--semibold {
    font-weight: 600;
}
.label--gray {
    color: #aaa;
}
.label--white {
    color: #fff;
}
.menu-big-link {
    text-decoration: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    line-height: 2em;
    color: #f00;
}
@media screen and (min-width: 1280px) {
    .menu-big-link {
        font-size: 3.2rem;
    }
}
.menu-item {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.944444444444444rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
}
@media screen and (min-width: 1024px) {
    .menu-item {
        font-size: 0.833333333333333rem;
    }
}
@media screen and (min-width: 1280px) {
    .menu-item {
        font-size: 0.944444444444444rem;
    }
}
.menu-item--small {
    font-size: 0.833333333333333rem;
}
.input-search {
    text-decoration: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 2.66rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #fff;
}
@media screen and (min-width: 1280px) {
    .input-search {
        font-size: 7.98rem;
    }
}
.input-search--gray {
    color: #404040;
}
.search-result {
    text-decoration: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 1.111111111111111rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #777;
}
.stock__label {
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.73rem;
    font-family: 'Inter', sans-serif;
}
.stock__value {
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}
.stock__date,
.stock__time {
    font-weight: 400;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}
.stock__current-day-label {
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #777;
}
.stock__history-label {
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1rem;
    color: #fff;
}
.stock__history-date {
    font-weight: 400;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #777;
}
.calendar-number {
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 4.166666666666667rem;
    font-family: 'Inter', sans-serif;
    color: #333745;
}
@media screen and (min-width: 1024px) {
    .calendar-number {
        font-size: 4rem;
    }
}
p > a {
    border-bottom: 1px solid #333745;
    text-decoration: none;
    color: #333745;
    transition: all 400ms ease-in-out;
}
p > a:hover {
    border-color: #f00;
    color: #f00;
}
@media print {
    .menu__entries {
        display: none;
    }
    .page-title {
        color: #fff;
    }
    #app {
        width: 100% !important;
    }
}
.c3 svg {
    font: 10px sans-serif;
    -webkit-tap-highlight-color: transparent;
}
.c3 path,
.c3 line {
    fill: none;
    stroke: #000;
}
.c3 text {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
    shape-rendering: crispEdges;
}
.c3-chart-arc path {
    stroke: #fff;
}
.c3-chart-arc text {
    fill: #fff;
    font-size: 13px;
}
.c3-grid line {
    stroke: #aaa;
}
.c3-grid text {
    fill: #aaa;
}
.c3-xgrid,
.c3-ygrid {
    stroke-dasharray: 3 3;
}
.c3-text.c3-empty {
    fill: #808080;
    font-size: 2em;
}
.c3-line {
    stroke-width: 1px;
}
.c3-circle._expanded_ {
    stroke-width: 1px;
    stroke: #fff;
}
.c3-selected-circle {
    fill: #fff;
    stroke-width: 2px;
}
.c3-bar {
    stroke-width: 0;
}
.c3-bar._expanded_ {
    fill-opacity: 1;
    fill-opacity: 0.75;
}
.c3-target.c3-focused {
    opacity: 1;
}
.c3-target.c3-focused path.c3-line,
.c3-target.c3-focused path.c3-step {
    stroke-width: 2px;
}
.c3-target.c3-defocused {
    opacity: 0.3 !important;
}
.c3-region {
    fill: #4682b4;
    fill-opacity: 0.1;
}
.c3-brush .extent {
    fill-opacity: 0.1;
}
.c3-legend-item {
    font-size: 12px;
}
.c3-legend-item-hidden {
    opacity: 0.15;
}
.c3-legend-background {
    opacity: 0.75;
    fill: #fff;
    stroke: #d3d3d3;
    stroke-width: 1;
}
.c3-title {
    font: 14px sans-serif;
}
.c3-tooltip-container {
    z-index: 10;
}
.c3-tooltip {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: #fff;
    empty-cells: show;
    -webkit-box-shadow: 7px 7px 12px -9px #777;
    -moz-box-shadow: 7px 7px 12px -9px #777;
    box-shadow: 7px 7px 12px -9px #777;
    opacity: 0.9;
}
.c3-tooltip tr {
    border: 1px solid #ccc;
}
.c3-tooltip th {
    background-color: #aaa;
    font-size: 14px;
    padding: 2px 5px;
    text-align: left;
    color: #fff;
}
.c3-tooltip td {
    font-size: 13px;
    padding: 3px 6px;
    background-color: #fff;
    border-left: 1px dotted #999;
}
.c3-tooltip td > span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
}
.c3-tooltip td.value {
    text-align: right;
}
.c3-area {
    stroke-width: 0;
    opacity: 0.2;
}
.c3-chart-arcs-title {
    dominant-baseline: middle;
    font-size: 1.3em;
}
.c3-chart-arcs .c3-chart-arcs-background {
    fill: #e0e0e0;
    stroke: none;
}
.c3-chart-arcs .c3-chart-arcs-gauge-unit {
    fill: #000;
    font-size: 16px;
}
.c3-chart-arcs .c3-chart-arcs-gauge-max {
    fill: #777;
}
.c3-chart-arcs .c3-chart-arcs-gauge-min {
    fill: #777;
}
.c3-chart-arc .c3-gauge-value {
    fill: #000;
    /*  font-size: 28px !important;*/
}
.c3-chart-arc.c3-target g path {
    opacity: 1;
}
.c3-chart-arc.c3-target.c3-focused g path {
    opacity: 1;
}
/*
 * OverlayScrollbars
 * https://github.com/KingSora/OverlayScrollbars
 *
 * Version: 1.5.1
 *
 * Copyright KingSora.
 * https://github.com/KingSora
 *
 * Released under the MIT license.
 * Date: 13.07.2018
 */
html.os-html,
html.os-html > .os-host {
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    height: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    position: absolute !important; /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
}
html.os-html > .os-host > .os-padding {
    position: absolute; /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
}
body.os-dragging,
body.os-dragging * {
    cursor: default;
}
.os-host,
.os-host-textarea {
    position: relative;
    overflow: visible !important;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
}
.os-host-flexbox {
    overflow: hidden !important;
    display: flex;
}
.os-host-flexbox > .os-padding > .os-viewport > .os-content {
    display: flex;
}
#hs-dummy-scrollbar-size {
    position: fixed;
    opacity: 0;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    visibility: hidden;
    overflow: scroll;
    height: 500px;
    width: 500px;
}
#hs-dummy-scrollbar-size,
.os-viewport {
    -ms-overflow-style: scrollbar !important;
}
.os-viewport-native-scrollbars-invisible#hs-dummy-scrollbar-size::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar,
.os-viewport-native-scrollbars-invisible#hs-dummy-scrollbar-size::-webkit-scrollbar-corner,
.os-viewport-native-scrollbars-invisible.os-viewport::-webkit-scrollbar-corner {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
    background: transparent !important;
}
.os-content-glue {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
}
.os-padding {
    direction: inherit;
    position: absolute;
    overflow: visible;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 1;
}
.os-host-overflow > .os-padding {
    overflow: hidden;
}
.os-viewport {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}
.os-content-arrange {
    position: absolute;
    z-index: -1;
    min-height: 1px;
    min-width: 1px;
    pointer-events: none;
}
.os-content {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    height: 100%;
    width: 100%;
    visibility: visible;
}
.os-content > .os-textarea {
    direction: inherit !important;
    float: none !important;
    margin: 0 !important;
    max-height: none !important;
    max-width: none !important;
    border: none !important;
    border-radius: 0px !important;
    background: transparent !important;
    outline: 0px none transparent !important;
    overflow: hidden !important;
    resize: none !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1;
    padding: 0px;
}
.os-host-rtl > .os-padding > .os-viewport > .os-content > .os-textarea {
    right: 0 !important;
}
.os-content > .os-textarea-cover {
    z-index: -1;
    pointer-events: none;
}
.os-content > .os-textarea[wrap='off'] {
    white-space: pre !important;
    margin: 0px !important;
}
.os-text-inherit {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
    font-variant: inherit;
    text-transform: inherit;
    text-decoration: inherit;
    text-indent: inherit;
    text-align: inherit;
    text-shadow: inherit;
    text-overflow: inherit;
    letter-spacing: inherit;
    word-spacing: inherit;
    line-height: inherit;
    unicode-bidi: inherit;
    direction: inherit;
    color: inherit;
    cursor: text;
}
.os-resize-observer,
.os-resize-observer-host {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}
.os-resize-observer-host {
    padding: inherit;
    border: inherit;
    border-color: transparent;
    border-style: solid;
    box-sizing: border-box;
}
.os-resize-observer-host:after {
    content: '';
}
.os-resize-observer-host > .os-resize-observer,
.os-resize-observer-host:after {
    height: 200%;
    width: 200%;
    padding: inherit;
    border: inherit;
    margin: 0px;
    display: block;
    box-sizing: content-box;
}
.os-resize-observer.observed,
object.os-resize-observer {
    box-sizing: border-box !important;
}
.os-size-auto-observer {
    box-sizing: inherit !important;
    height: 100%;
    width: inherit;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    flex-grow: inherit;
    flex-shrink: 0;
    flex-basis: 0;
}
.os-size-auto-observer > .os-resize-observer {
    width: 1000%;
    height: 1000%;
    min-height: 1px;
    min-width: 1px;
}
.os-resize-observer-item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
    direction: ltr !important;
    -webkit-box-flex: 0 !important;
    -ms-flex: none !important;
    flex: none !important;
}
.os-resize-observer-item-final {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-box-flex: 0 !important;
    -ms-flex: none !important;
    flex: none !important;
}
.os-resize-observer {
    -webkit-animation-duration: 0.001s;
    animation-duration: 0.001s;
    -webkit-animation-name: hs-resize-observer-dummy-animation;
    animation-name: hs-resize-observer-dummy-animation;
}
.os-host-transition > .os-scrollbar,
.os-host-transition > .os-scrollbar-corner {
    -webkit-transition:
        opacity 0.3s,
        visibility 0.3s,
        top 0.3s,
        right 0.3s,
        bottom 0.3s,
        left 0.3s;
    transition:
        opacity 0.3s,
        visibility 0.3s,
        top 0.3s,
        right 0.3s,
        bottom 0.3s,
        left 0.3s;
}
html.os-html > .os-host > .os-scrollbar {
    position: absolute; /* could be position: fixed; but it causes issues on iOS (-webkit-overflow-scrolling: touch) */
    z-index: 999999; /* highest z-index of the page */
}
.os-scrollbar,
.os-scrollbar-corner {
    position: absolute;
    opacity: 1;
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    z-index: 1;
}
.os-scrollbar-corner {
    bottom: 0;
    right: 0;
}
.os-scrollbar {
    pointer-events: none;
}
.os-scrollbar-track {
    pointer-events: auto;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 0 !important;
    border: none !important;
}
.os-scrollbar-handle {
    pointer-events: auto;
    position: absolute;
    width: 100%;
    height: 100%;
}
.os-scrollbar-handle-off,
.os-scrollbar-track-off {
    pointer-events: none;
}
.os-scrollbar.os-scrollbar-unusable,
.os-scrollbar.os-scrollbar-unusable * {
    pointer-events: none !important;
}
.os-scrollbar.os-scrollbar-unusable .os-scrollbar-handle {
    opacity: 0 !important;
}
.os-scrollbar-horizontal {
    bottom: 0;
    left: 0;
}
.os-scrollbar-vertical {
    top: 0;
    right: 0;
}
.os-host-rtl > .os-scrollbar-horizontal {
    right: 0;
}
.os-host-rtl > .os-scrollbar-vertical {
    right: auto;
    left: 0;
}
.os-host-rtl > .os-scrollbar-corner {
    right: auto;
    left: 0;
}
.os-scrollbar-auto-hidden,
.os-padding + .os-scrollbar-corner,
.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden
    > .os-scrollbar-corner,
.os-host-scrollbar-horizontal-hidden > .os-scrollbar-horizontal,
.os-host-resize-disabled.os-host-scrollbar-vertical-hidden
    > .os-scrollbar-corner,
.os-host-scrollbar-vertical-hidden > .os-scrollbar-vertical,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden
    + .os-scrollbar-vertical
    + .os-scrollbar-corner,
.os-scrollbar-horizontal
    + .os-scrollbar-vertical.os-scrollbar-auto-hidden
    + .os-scrollbar-corner,
.os-scrollbar-horizontal.os-scrollbar-auto-hidden
    + .os-scrollbar-vertical.os-scrollbar-auto-hidden
    + .os-scrollbar-corner {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.os-scrollbar-corner-resize-both {
    cursor: nwse-resize;
}
.os-host-rtl > .os-scrollbar-corner-resize-both {
    cursor: nesw-resize;
}
.os-scrollbar-corner-resize-horizontal {
    cursor: ew-resize;
}
.os-scrollbar-corner-resize-vertical {
    cursor: ns-resize;
}
.os-dragging .os-scrollbar-corner.os-scrollbar-corner-resize {
    cursor: default;
}
.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden
    > .os-scrollbar-vertical {
    top: 0;
    bottom: 0;
}
.os-host-resize-disabled.os-host-scrollbar-vertical-hidden
    > .os-scrollbar-horizontal,
.os-host-rtl.os-host-resize-disabled.os-host-scrollbar-vertical-hidden
    > .os-scrollbar-horizontal {
    right: 0;
    left: 0;
}
.os-scrollbar:hover,
.os-scrollbar-corner.os-scrollbar-corner-resize {
    opacity: 1 !important;
    visibility: visible !important;
}
.os-scrollbar-corner.os-scrollbar-corner-resize {
    background-position: 100% 100%;
    pointer-events: auto !important;
}
.os-host-rtl > .os-scrollbar-corner.os-scrollbar-corner-resize {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.os-host-overflow {
    overflow: hidden !important;
}
@-webkit-keyframes hs-resize-observer-dummy-animation {
    from {
        z-index: 0;
    }
    to {
        z-index: -1;
    }
}
.os-theme-none > .os-scrollbar-horizontal,
.os-theme-none > .os-scrollbar-vertical,
.os-theme-none > .os-scrollbar-corner {
    display: none !important;
}
.os-theme-none > .os-scrollbar-corner-resize {
    display: block !important;
    min-width: 10px;
    min-height: 10px;
}
.os-theme-dark > .os-scrollbar-horizontal,
.os-theme-light > .os-scrollbar-horizontal {
    right: 10px;
    height: 10px;
}
.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical {
    bottom: 10px;
    width: 10px;
}
.os-theme-dark.os-host-rtl > .os-scrollbar-horizontal,
.os-theme-light.os-host-rtl > .os-scrollbar-horizontal {
    left: 10px;
    right: 0;
}
.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
    height: 10px;
    width: 10px;
}
.os-theme-dark > .os-scrollbar-corner,
.os-theme-light > .os-scrollbar-corner {
    background-color: transparent;
}
.os-theme-dark > .os-scrollbar,
.os-theme-light > .os-scrollbar {
    padding: 2px;
    box-sizing: border-box;
    background: transparent;
}
.os-theme-dark > .os-scrollbar.os-scrollbar-unusable,
.os-theme-light > .os-scrollbar.os-scrollbar-unusable {
    background: transparent;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
    background: transparent;
}
.os-theme-dark
    > .os-scrollbar-horizontal
    > .os-scrollbar-track
    > .os-scrollbar-handle,
.os-theme-light
    > .os-scrollbar-horizontal
    > .os-scrollbar-track
    > .os-scrollbar-handle {
    min-width: 30px;
}
.os-theme-dark
    > .os-scrollbar-vertical
    > .os-scrollbar-track
    > .os-scrollbar-handle,
.os-theme-light
    > .os-scrollbar-vertical
    > .os-scrollbar-track
    > .os-scrollbar-handle {
    min-height: 30px;
}
.os-theme-dark.os-host-transition
    > .os-scrollbar
    > .os-scrollbar-track
    > .os-scrollbar-handle,
.os-theme-light.os-host-transition
    > .os-scrollbar
    > .os-scrollbar-track
    > .os-scrollbar-handle {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-dark > .os-scrollbar > .os-scrollbar-track,
.os-theme-light > .os-scrollbar > .os-scrollbar-track {
    border-radius: 10px;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    background: rgba(0, 0, 0, 0.4);
}
.os-theme-light > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    background: rgba(255, 255, 255, 0.4);
}
.os-theme-dark
    > .os-scrollbar:hover
    > .os-scrollbar-track
    > .os-scrollbar-handle {
    background: rgba(0, 0, 0, 0.55);
}
.os-theme-light
    > .os-scrollbar:hover
    > .os-scrollbar-track
    > .os-scrollbar-handle {
    background: rgba(255, 255, 255, 0.55);
}
.os-theme-dark
    > .os-scrollbar
    > .os-scrollbar-track
    > .os-scrollbar-handle.active {
    background: rgba(0, 0, 0, 0.7);
}
.os-theme-light
    > .os-scrollbar
    > .os-scrollbar-track
    > .os-scrollbar-handle.active {
    background: rgba(255, 255, 255, 0.7);
}
.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
}
.os-theme-dark.os-host-scrollbar-horizontal-hidden
    > .os-scrollbar-horizontal
    .os-scrollbar-handle:before,
.os-theme-dark.os-host-scrollbar-vertical-hidden
    > .os-scrollbar-vertical
    .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-horizontal-hidden
    > .os-scrollbar-horizontal
    .os-scrollbar-handle:before,
.os-theme-light.os-host-scrollbar-vertical-hidden
    > .os-scrollbar-vertical
    .os-scrollbar-handle:before {
    display: none;
}
.os-theme-dark > .os-scrollbar-horizontal .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-horizontal .os-scrollbar-handle:before {
    top: -6px;
    bottom: -2px;
}
.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
    left: -6px;
    right: -2px;
}
.os-host-rtl.os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
.os-host-rtl.os-theme-light
    > .os-scrollbar-vertical
    .os-scrollbar-handle:before {
    right: -6px;
    left: -2px;
}
@-moz-keyframes hs-resize-observer-dummy-animation {
    from {
        z-index: 0;
    }
    to {
        z-index: -1;
    }
}
@-webkit-keyframes hs-resize-observer-dummy-animation {
    from {
        z-index: 0;
    }
    to {
        z-index: -1;
    }
}
@-o-keyframes hs-resize-observer-dummy-animation {
    from {
        z-index: 0;
    }
    to {
        z-index: -1;
    }
}
@keyframes hs-resize-observer-dummy-animation {
    from {
        z-index: 0;
    }
    to {
        z-index: -1;
    }
}
@media screen and (min-width: 1024px) {
    .activity .page-intro {
        padding-bottom: 100px;
    }
}
.activity img {
    width: 100%;
}
.activity__section {
    margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .activity__section {
        margin-bottom: 80px;
    }
}
@media screen and (min-width: 1024px) {
    .activity__section {
        margin-bottom: 100px;
    }
}
@media screen and (min-width: 1024px) {
    .activity__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
    }
}
.activity-nav__link {
    position: absolute;
    top: 345px;
    width: 12.5vw;
    text-decoration: none;
    color: #333745;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.833333333333333rem;
    line-height: 18px;
    text-align: center;
    transition: 0.3s color linear;
}
.activity-nav__link--prev {
    left: 0;
}
.activity-nav__link--next {
    right: 0;
}
.activity-nav__link path {
    transition: 0.3s fill linear;
}
.activity-nav__link:hover {
    color: #f00;
}
.activity-nav__link:hover path {
    fill: #f00;
}
.activity-nav__label {
    position: absolute;
    top: 0;
    left: 0;
    padding-bottom: 20px;
    width: 100%;
    transform: translateY(-100%);
}
@media screen and (max-width: 1023px) {
    .activity-nav {
        display: none;
    }
}
.article {
    font-family: 'Inter', sans-serif;
}
.article p:not(:last-child) {
    margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .article p:not(:last-child) {
        margin-bottom: 25px;
    }
}
.article img {
    max-width: 100%;
    width: 100%;
}
.article .flex {
    display: flex;
}
@media screen and (max-width: 1023px) {
    .article .headline {
        margin-bottom: 20px;
    }
}
@media print {
    .article .headline {
        margin-bottom: 20px;
    }
}
.article .image-block {
    height: 100%;
    padding-top: 100%;
}
.article .paragraph ul li:before {
    top: 16px;
    left: 0;
    background-color: #333745;
}
@media print {
    .article .paragraph ul li:before {
        -webkit-print-color-adjust: exact;
    }
}
.article .paragraph li {
    padding-left: 30px;
}
.article .paragraph ol {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    counter-reset: counterOl;
}
.article .paragraph ol li {
    position: relative;
}
.article .paragraph ol li:before {
    position: absolute;
    top: 0;
    left: 0;
    counter-increment: counterOl;
    content: counter(counterOl);
    color: #333745;
    font-size: 1.111111111111111rem;
    font-weight: 600;
}
.article .paragraph ul:not(:last-child),
.article .paragraph ol:not(:last-child) {
    margin-bottom: 20px;
}
.article__img-portrait {
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .article__img-portrait {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 1024px) {
    .article__img-portrait {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
}
.article__content {
    padding: 0 10px;
}
@media screen and (min-width: 768px) {
    .article__content {
        padding: 0 20px;
    }
}
@media screen and (min-width: 1024px) {
    .article__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin: 0 auto;
        padding: 0;
    }
}
.article__section {
    padding: 25px 0;
}
.article__section:last-child {
    padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .article__section {
        padding: 40px 0;
    }
    .article__section:last-child {
        padding-bottom: 80px;
    }
}
@media screen and (min-width: 1024px) {
    .article__section {
        padding: 65px 0;
    }
    .article__section:first-child {
        padding-top: 75px;
    }
    .article__section:last-child {
        padding-bottom: 150px;
    }
}
@media print {
    .article__section {
        page-break-inside: avoid;
    }
}
.article__section img {
    max-width: 100%;
}
.article__section-title {
    margin: 0 0 10px;
    font-size: 1.666666666666667rem;
    font-family: 'Playfair Display', serif;
    color: #333745;
}
@media screen and (min-width: 768px) {
    .article__section-title {
        margin-bottom: 25px;
        font-size: 2.666666666666667rem;
    }
}
@media screen and (min-width: 1024px) {
    .article__section-title {
        margin-bottom: 45px;
        font-size: 2rem;
    }
}
@media print {
    .header-site,
    .gray-menu,
    .intro,
    .bkg-grid,
    .footer,
    .breadcrumb {
        display: none !important;
    }
}
.contact .form-label {
    font-weight: 600;
}
.contact .btn {
    background: transparent;
    border: 0;
    padding: 0;
    text-shadow: none;
}
@media screen and (min-width: 1024px) {
    .contact__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-left: 25%;
    }
}
.contact .form {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.833333333333333rem;
}
.contact .form__left {
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .contact .form__left {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 40%;
        flex-preferred-size: 40%;
        max-width: 40%;
    }
}
.contact .form__right {
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .contact .form__right {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 40%;
        flex-preferred-size: 40%;
        max-width: 40%;
        margin-left: 20%;
        padding-top: 78px;
    }
}
.contact .form__wrap {
    width: 100%;
}
.contact .form__row {
    margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
    .contact .form__row {
        margin-bottom: 20px;
    }
}
.contact .form__errors {
    margin-top: 10px;
}
.contact .form__error {
    display: none;
    opacity: 0;
    margin-bottom: 5px;
}
.contact .form__sent {
    display: none;
    font-weight: 600;
    line-height: 1em;
    opacity: 0;
}
.contact .form__legal {
    font-size: 0.611111111111111rem;
    line-height: 13px;
    color: #777;
    margin: -5px 0 30px;
}
.contact .form__input--radio,
.contact .form__input--checkbox {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.contact .form__input--select {
    visibility: hidden;
}
.contact .form__input--text,
.contact .form__input--textarea {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 2px solid #dedede;
    background: transparent;
    color: #333745;
}
.contact .form__input--text:focus,
.contact .form__input--textarea:focus {
    outline: none;
}
.contact .form__input--text::-webkit-input-placeholder,
.contact .form__input--textarea::-webkit-input-placeholder {
    font-weight: 600;
}
.contact .form__input--text:-moz-placeholder,
.contact .form__input--textarea:-moz-placeholder {
    font-weight: 600;
}
.contact .form__input--text::-moz-placeholder,
.contact .form__input--textarea::-moz-placeholder {
    font-weight: 600;
}
.contact .form__input--text:-ms-input-placeholder,
.contact .form__input--textarea:-ms-input-placeholder {
    font-weight: 600;
}
.contact .form__input--text {
    font-weight: 400;
    padding-top: 13px;
    padding-bottom: 20px;
}
.contact .form__input--text::-webkit-input-placeholder {
    color: #777;
}
.contact .form__input--text:-moz-placeholder {
    color: #777;
}
.contact .form__input--text::-moz-placeholder {
    color: #777;
}
.contact .form__input--text:-ms-input-placeholder {
    color: #777;
}
.contact .form__input--textarea {
    font-family: 'Inter', sans-serif;
    padding: 15px 0 20px;
    height: 170px;
    font-size: 0.833333333333333rem;
}
.contact .form__input--textarea::-webkit-input-placeholder {
    color: #333745;
}
.contact .form__input--textarea:-moz-placeholder {
    color: #333745;
}
.contact .form__input--textarea::-moz-placeholder {
    color: #333745;
}
.contact .form__input--textarea:-ms-input-placeholder {
    color: #333745;
}
.contact .radio--fake,
.contact .checkbox--fake {
    position: relative;
    display: inline-block;
    margin: -1px 4px 0 0;
    border: 2px solid #dedede;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
.contact .radio--fake span,
.contact .checkbox--fake span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #333745;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    transition: transform 0.4s;
}
.contact .radio--fake {
    border-radius: 50%;
}
.contact .radio--fake span {
    border-radius: 50%;
}
.contact .form__input--radio:checked + .form__label .radio--fake span,
.contact .form__input--checkbox:checked + .form__label .checkbox--fake span {
    transform: translate(-50%, -50%) scale(1);
}
.contact .civility__wrapper {
    position: relative;
    display: inline-block;
    margin-right: 60px;
    cursor: pointer;
}
.contact .civility__main-label {
    margin-bottom: 20px;
}
.contact .cs-select {
    position: relative;
    border: 0;
    border-right: 2px solid #dedede;
    border-bottom: 2px solid #dedede;
    padding-top: 15px;
    padding-bottom: 20px;
    padding-right: 40px;
    height: 55px;
}
.contact .cs-select:before {
    content: '';
    position: absolute;
    top: 31%;
    right: 15px;
    width: 11px;
    height: 16px;
    background: transparent url('/static/images/menu-arrow.svg') top left
        no-repeat;
    transition: transform 0.2s;
    transform: rotate(-90deg);
}
.contact .cs-select.open .cs-wrapper .cs-list {
    opacity: 1;
    transform: scaleY(1);
}
.contact .cs-select.open:before {
    transform: rotate(90deg);
}
.contact .cs-select.above .cs-wrapper .cs-list {
    position: absolute;
    bottom: 10px;
    left: 0;
    top: auto;
    transform-origin: left bottom 0;
}
.contact .cs-select .cs-list {
    position: absolute;
    top: 40px;
    right: -2px;
    left: 0;
    z-index: 2;
    border: 2px solid #dedede;
    border-top: 0;
    padding: 0;
    max-height: 200px;
    background-color: #fff;
    opacity: 0;
    transform-origin: 0 0 0;
    transform: scaleY(0);
    transition: all 0.2s ease-in-out;
    overflow: auto;
}
.contact .cs-select .cs-option {
    float: none;
    display: block;
    margin: 0;
    padding: 10px 20px;
    font-size: 0.833333333333333rem;
    color: #777;
    text-align: left;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.contact .cs-select .cs-option:hover {
    color: #fff;
    background-color: #777;
}
.contact .cs-select .cs-option.disabled {
    display: none;
}
.contact .cs-select .cs-label {
    font-weight: 600;
    color: #777;
}
.contact .grecaptcha-badge {
    visibility: hidden;
}
.contact-infos {
    margin: 60px 0 50px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 0.833333333333333rem;
    color: #333745;
}
@media screen and (min-width: 768px) {
    .contact-infos {
        margin: 110px 0 100px;
        display: flex;
    }
    .contact-infos__left {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
    .contact-infos__right {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        padding-left: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .contact-infos__left {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 40%;
        flex-preferred-size: 40%;
        max-width: 40%;
    }
    .contact-infos__right {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 40%;
        flex-preferred-size: 40%;
        max-width: 40%;
        margin-left: 20%;
        padding-left: 0;
    }
}
@media screen and (max-width: 1023px) {
    .contact-infos__left {
        margin-bottom: 35px;
    }
}
.contact-infos__title {
    margin: 0 0 20px;
    font-size: 1.666666666666667rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}
.contact-infos__section:not(:last-child) {
    margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
    .contact-infos__section:not(:last-child) {
        margin-bottom: 50px;
    }
}
.contact-infos__txt {
    margin-bottom: 20px;
}
.contact-infos__info {
    font-size: 0.722222222222222rem;
    color: #777;
    letter-spacing: 1.5px;
}
.contact-infos__info .mail {
    color: #333745;
}
.contact-infos__info .mail:before {
    content: 'direction.communication';
}
.contact-infos__info .mail:after {
    content: 'moavis.fr';
}
.governance__section {
    padding-bottom: 45px;
}
@media screen and (min-width: 768px) {
    .governance__section {
        padding-bottom: 85px;
    }
    .governance__section:first-of-type {
        padding-top: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .governance__section {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
    }
}
.governance__section-title {
    margin: 0 0 30px;
    font-family: 'Playfair Display', serif;
    font-size: 1.666666666666667rem;
    color: #333745;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .governance__section-title {
        margin-bottom: 45px;
        font-size: 2rem;
    }
}
.governance__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.governance__item {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 50%;
    flex-preferred-size: 50%;
    max-width: 50%;
    margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
    .governance__item {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        margin-bottom: 80px;
    }
}
@media screen and (min-width: 1024px) {
    .governance__item {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 16.666666666666664%;
        flex-preferred-size: 16.666666666666664%;
        max-width: 16.666666666666664%;
    }
}
.governance-people img {
    width: 100%;
}
.governance-people__name {
    display: block;
    margin: 20px 0 10px;
    color: #333745;
    font-size: 1.111111111111111rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .governance-people__name {
        margin-top: 40px;
    }
}
.governance-people__job {
    color: #777;
    letter-spacing: 1.5px;
    font-size: 0.722222222222222rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    padding-right: 15px;
}
.home {
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .home .page-title {
        font-size: 2.777777777777778rem;
    }
}
.home__content {
    padding: 0 10px;
}
@media screen and (min-width: 768px) {
    .home__content {
        padding: 0 20px;
    }
}
@media screen and (min-width: 1024px) {
    .home__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin: 0 auto;
        padding: 0;
    }
}
.home__activity-block {
    margin-top: 100px;
}
.home .article__section:not(:last-child) {
    padding-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .home .article__section:not(:last-child) {
        padding-bottom: 150px;
    }
}
.home .link-wrapper {
    margin: 30px 0;
}
.home .join_us .link-wrapper {
    margin-bottom: 0;
}
.home .join_us img {
    width: 100%;
}
@media screen and (max-width: 1023px) {
    .home .join_us {
        margin-bottom: 50px;
    }
}
.home .activity-list {
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
    font-size: 0;
    margin-bottom: 100px;
    background-color: #000;
}
@media screen and (min-width: 1024px) {
    .home .activity-list {
        margin-bottom: 150px;
    }
}
.home .activity-list .activity-block {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 50%;
}
.home .activity-list .activity-block::before {
    display: block;
    width: 100%;
    padding-top: 100%;
    content: '';
}
.home .activity-list .activity-block > *:first-child {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1;
}
.home .activity-list .activity-block > *:first-child > img {
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .home .activity-list .activity-block {
        width: calc(100% / 3);
    }
}
.home .activity-list .activity-block a {
    text-decoration: none;
}
.home .activity-list .activity-block a::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    bottom: 0;
    left: 0;
    height: inherit;
    background: linear-gradient(180deg, rgba(109, 111, 114, 0) 0%, #000 100%);
    z-index: 1;
}
.home .activity-list .activity-block a img {
    width: 100%;
    transition: transform 0.5s linear;
}
.home .activity-list .activity-block a:hover {
    cursor: pointer;
}
.home .activity-list .activity-block a:hover .activity-name {
    color: #f00;
    transition: color 200ms linear;
}
.home .activity-list .activity-block a:hover img {
    transform: scale(1.1);
}
.home .activity-list .activity-name {
    font-size: 0.888888888888889rem;
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    z-index: 1;
    line-height: 1.2;
    transition: color 200ms linear;
    max-width: 55%;
}
@media screen and (min-width: 768px) {
    .home .activity-list .activity-name {
        font-size: 1rem;
        bottom: 35px;
        left: 35px;
    }
}
@media screen and (min-width: 1024px) {
    .home .activity-list .activity-name {
        font-size: 0.833333333333333rem;
        bottom: 30px;
        left: 30px;
    }
}
@media screen and (min-width: 1280px) {
    .home .activity-list .activity-name {
        font-size: 1.111111111111111rem;
        bottom: 50px;
        left: 50px;
    }
}
.news {
    min-height: 100vh;
    padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
    .news {
        padding-bottom: 0;
    }
}
.news .page-intro {
    padding-top: 30px;
    padding-bottom: 0px;
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .news .page-intro {
        margin-bottom: 45px;
        padding-top: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .news .page-intro {
        padding-top: 150px;
    }
}
.news .page-intro__title {
    margin-left: 0;
}
.news .page-title {
    padding-bottom: 0;
    font-size: 1.666666666666667rem;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .news .page-title {
        font-size: 4.444444444444445rem;
    }
}
@media screen and (min-width: 1024px) {
    .news .page-title {
        margin-left: 40%;
    }
}
.news .news-block {
    position: relative;
    display: block;
}
.news .news-block__inner {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
    margin-left: 25%;
    margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .news .news-block__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        flex-preferred-size: 100%;
        max-width: 100%;
        margin-left: 0%;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1024px) {
    .news .news-block__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-left: 25%;
    }
}
.news .news-block__inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.news .image-block__image {
    height: auto;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.news .bkg-text-block {
    margin-top: -20px;
    padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .news .bkg-text-block {
        margin-top: 100px;
        padding-bottom: 70px;
    }
}
.news .bkg-text-block__bkg {
    font-size: 3.888888888888889rem;
}
@media screen and (min-width: 768px) {
    .news .bkg-text-block__bkg {
        font-size: 8.88888888888889rem;
    }
}
.news .bkg-text-block__inner {
    padding-top: 65px;
}
@media screen and (min-width: 768px) {
    .news .bkg-text-block__inner {
        padding-top: 180px;
    }
}
.news .btn__wording {
    margin-top: 6px;
}
.news .btn__lines {
    margin-bottom: 6px;
}
.news-detail .title--level-2 {
    font-size: 2rem;
    line-height: 46px;
    font-family: 'Playfair Display', serif;
    color: #333745;
}
.news-detail .share-block .label {
    color: #f00;
}
.news-detail .share-block svg path {
    fill: #f00;
}
.news-detail__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.news-detail__content {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .news-detail__content {
        margin-top: 140px;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 37.5%;
        flex-preferred-size: 37.5%;
        max-width: 37.5%;
    }
}
.news-detail .content__intro {
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .news-detail .content__intro {
        display: flex;
        flex: 0 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        text-align: 'middle';
        margin-bottom: 0;
        height: calc(100vh - 260px);
    }
}
@media screen and (min-width: 1024px) {
    .news-detail .content.no-intro {
        margin-top: 16vh;
    }
}
.news-detail .intro__inner {
    width: 100%;
}
.news-detail .content-block {
    margin-bottom: 50px;
    font-size: 0.833333333333333rem;
    letter-spacing: initial;
}
.news-detail .content-video__title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.666666666666667rem;
    line-height: 35px;
    font-weight: bold;
    max-width: 70%;
}
.news-detail .video-frame-wrapper {
    position: relative;
    overflow: hidden;
}
.news-detail .video-frame-wrapper::before {
    display: block;
    width: 100%;
    padding-top: 56.25%;
    content: '';
}
.news-detail .video-frame-wrapper > *:first-child {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1;
}
.news-detail .video-frame-wrapper > *:first-child > img {
    width: 100%;
}
.news-detail .title-paragraph {
    color: #333745;
    font-size: 1.111111111111111rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.news-detail .content-quote .info2 {
    margin-bottom: 50px;
}
.news-detail .content-paragraph-btn .link-wrapper {
    margin-top: 30px;
}
.news-detail .content-image .image-block {
    margin-bottom: 20px;
}
@media screen and (min-width: 1280px) {
    .news-detail .bkg-text-block {
        padding-top: 0;
    }
}
.news-detail .info1 a {
    color: #333745;
    text-decoration: none;
}
.news-detail .image-block__image {
    height: auto;
}
.publications {
    min-height: 100vh;
}
@media screen and (max-width: 1023px) {
    .publications {
        padding-bottom: 60px;
    }
}
.publications__filters {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100vw;
}
@media screen and (min-width: 1024px) {
    .publications__filters {
        width: auto;
        position: relative;
    }
}
.publications__filters-tags {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
    text-align: middle;
    flex-wrap: nowrap;
    z-index: 2;
    position: relative;
    width: 100%;
    background: #eee;
}
@media screen and (min-width: 1024px) {
    .publications__filters-tags {
        display: none;
    }
}
.publications__filters-tag {
    flex: 1 1 auto;
    max-width: 100%;
    min-height: 60px;
    height: 100%;
    text-decoration: none;
    vertical-align: middle;
    font-size: 0.583333333333333rem;
    line-height: 17px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.publications__filters-tag span {
    width: 41%;
}
.publications__filters-tag--active {
    color: #f00;
}
.publications__filters-tag + .publications__filters-tag {
    border-left: 1px solid #fff;
}
.publications__filters-tag:hover {
    color: #f00;
}
.publications__filters .filter-block {
    z-index: 1;
    bottom: 60px;
}
@media screen and (min-width: 1024px) {
    .publications__filters .filter-block {
        position: relative;
        top: 50px;
        bottom: auto;
        z-index: 10;
    }
}
.publications__filters .filter-block .filter-block__dates {
    transition: transform 0.4s;
}
@media all and (max-width: 456px) {
    .publications__filters .filter-block .filter-block__dates {
        top: 0;
    }
}
.publications__filters .filter-block--open .filter-block__dates {
    transform: translateY(-100%);
}
@media screen and (min-width: 1024px) {
    .publications__filters .filter-block--open .filter-block__dates {
        transform: none;
    }
}
.publications__type-filters {
    position: fixed;
    bottom: 60px;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    transform: translateY(100%);
    transition: transform 0.4s;
    will-change: transform;
}
@media all and (max-width: 456px) {
    .publications__type-filters {
        bottom: 72px;
    }
}
.publications__type-filters--open {
    transform: translateY(0);
}
@media screen and (min-width: 1024px) {
    .publications__type-filters {
        display: flex;
        flex: 0 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        text-align: end;
        width: auto;
        position: relative;
        bottom: auto;
        left: auto;
        margin: 0 12.5% 50px;
        transform: none;
    }
}
.publications__type-filters-item {
    width: 100%;
    position: relative;
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    background: #fff;
}
@media screen and (min-width: 1024px) {
    .publications__type-filters-item {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 16.666666666666664%;
        flex-preferred-size: 16.666666666666664%;
        max-width: 16.666666666666664%;
        padding: 0;
        text-align: right;
        border: 0;
        background: none;
    }
}
.publications__type-filters-item--active
    .publications__type-filters-item-label {
    color: #f00;
}
@media screen and (min-width: 1024px) {
    .publications__type-filters-item--active
        .publications__type-filters-item-label:after {
        transform: scaleX(1);
    }
}
.publications__type-filters-item-label {
    display: inline-block;
    position: relative;
    text-decoration: none;
    transition: color 0.4s;
}
@media screen and (min-width: 1024px) {
    .publications__type-filters-item-label {
        padding-left: 25px;
    }
}
.publications__type-filters-item-label:after {
    content: '';
    width: 10px;
    height: 2px;
    position: absolute;
    top: 0.6rem;
    left: 5px;
    background: #f00;
    transform-origin: top right;
    transform: scaleX(0);
    transition: transform 0.4s;
    will-change: transform;
}
@media screen and (min-width: 1024px) {
    .publications-block__container {
        width: 62.5%;
        margin-left: 25%;
    }
}
.publications-block__no-results {
    display: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.833333333333333rem;
    color: #333745;
}
.publications-block__no-results.is-visible {
    display: block;
}
.publications-block__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.publications-block .filters-tags {
    margin-bottom: 30px;
}
.publications-block li.publications-item:first-child,
.publications-block li.publications-item:second-child {
    padding-top: 5px !important;
}
@media screen and (min-width: 1024px) {
    .publications .bkg-text-block {
        margin: 105px 0 25px;
    }
}
@media screen and (max-width: 767px) {
    .publications .bkg-text-block__inner {
        padding-top: 120px;
    }
}
.publications .bkg-text-block__bkg {
    font-size: 3.333333333333333rem;
}
@media screen and (min-width: 768px) {
    .publications .bkg-text-block__bkg {
        font-size: 6.944444444444445rem;
    }
}
@media screen and (min-width: 1024px) {
    .publications .bkg-text-block__bkg {
        font-size: 8.88888888888889rem;
    }
}
.publications__intro-newsletter-wrap {
    width: 100%;
}
@media screen and (min-width: 768px) {
    .publications__intro-newsletter-wrap {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
}
@media screen and (min-width: 1024px) {
    .publications__intro-newsletter-wrap {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-left: 25%;
    }
    .publications__intro-newsletter-wrap .btn {
        padding-bottom: 10px;
    }
}
.publications__intro-newsletter {
    font-size: 1.111111111111111rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333745;
}
@media screen and (max-width: 767px) {
    .publications__intro-newsletter {
        display: block;
        margin-bottom: 15px;
    }
}
@media screen and (min-width: 768px) {
    .publications__intro-newsletter {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        font-size: 1.666666666666667rem;
    }
}
@media screen and (min-width: 1024px) {
    .publications__intro-newsletter {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 80%;
        flex-preferred-size: 80%;
        max-width: 80%;
    }
}
.work {
    min-height: 100vh;
    padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
    .work {
        padding-bottom: 0;
    }
}
.work__body {
    position: relative;
    z-index: 1;
}
.work__inner {
    padding-top: 0;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
    margin-left: 25%;
}
@media screen and (min-width: 768px) {
    .work__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        flex-preferred-size: 100%;
        max-width: 100%;
        margin-left: 0%;
    }
}
.work__inner .item__inner .item__text-wrapper {
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .work__inner .item__inner .item__text-wrapper {
        margin-bottom: 0;
    }
    .work__inner
        .item__inner
        .item__text-wrapper
        h2.title.title--level-3.item__title {
        font-size: 1.3rem;
    }
}
@media screen and (min-width: 1280px) {
    .work__inner .item__inner .item__text-wrapper {
        margin-bottom: 35px;
    }
    .work__inner
        .item__inner
        .item__text-wrapper
        h2.title.title--level-3.item__title {
        font-size: 2rem;
    }
}
@media screen and (min-width: 1600px) {
    .work__inner .item__inner .item__text-wrapper {
        margin-bottom: 50px;
    }
}
.work__inner .item__inner .parallax-data {
    color: #777;
}
@media screen and (max-width: 767px) {
    .work .item__number.number.number--medium {
        left: -25vw;
    }
}
.work__item-group {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}
.work .page-intro {
    padding-top: 30px;
    padding-bottom: 50px;
    margin-bottom: 50px;
    padding-bottom: 0;
    flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
    .work .page-intro {
        padding-top: 50px;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        flex-preferred-size: 100%;
        max-width: 100%;
        margin-left: 0%;
        flex-wrap: wrap;
    }
}
@media screen and (min-width: 1024px) {
    .work .page-intro {
        padding-top: 150px;
        margin-bottom: 80px;
    }
}
.work .page-intro__content {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
}
@media screen and (min-width: 768px) {
    .work .page-intro__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        flex-preferred-size: 100%;
        max-width: 100%;
    }
}
.work .page-intro__title {
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .work .page-intro__title {
        margin-bottom: 30px;
        margin-left: 25%;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 1024px) {
    .work .page-intro__container {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 25%;
    }
}
.work .page-intro__inner {
    align-items: flex-start;
}
@media screen and (min-width: 1024px) {
    .work .page-intro__inner .scroll-indicator {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        display: block;
        align-self: flex-end;
    }
}
.work .page-intro-scroll__text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #595959;
    margin-bottom: 0;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .work .page-intro-scroll__text {
        font-size: 1.111111111111111rem;
        line-height: 1.666666666666667rem;
    }
}
.work .page-intro .mobile-scroll {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 25%;
    flex-preferred-size: 25%;
    max-width: 25%;
    padding-top: 60px;
}
@media screen and (min-width: 768px) {
    .work .page-intro .mobile-scroll {
        order: 1;
    }
}
.work .page-intro .page-title {
    line-height: 1;
    font-size: 1.666666666666667rem;
    padding-bottom: 0;
}
@media screen and (min-width: 768px) {
    .work .page-intro .page-title {
        font-size: 4.444444444444445rem;
    }
}
.work .bkg-text-block {
    padding-bottom: 110px;
}
@media screen and (min-width: 768px) {
    .work .bkg-text-block {
        margin-top: 50px;
        padding-bottom: 70px;
    }
}
.work .bkg-text-block__inner {
    padding-top: 85px;
}
@media screen and (min-width: 768px) {
    .work .bkg-text-block__inner {
        padding-top: 190px;
    }
}
@media screen and (min-width: 1280px) {
    .work .bkg-text-block__inner {
        padding-top: 230px;
    }
}
@media screen and (min-width: 768px) {
    .work .bkg-text-block__text {
        top: 47%;
    }
}
@media screen and (min-width: 1280px) {
    .work .bkg-text-block__text {
        top: 39%;
    }
}
@media screen and (min-width: 1024px) {
    .view--mozaic .work__item-group {
        flex-direction: row-reverse;
        justify-content: flex-end;
        text-align: 'end';
        margin-bottom: 100px;
        padding-top: 25vw;
    }
    .view--mozaic .work .work__item:nth-child(1),
    .view--mozaic .work .work__item:nth-child(5) {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 37.5%;
        flex-preferred-size: 37.5%;
        max-width: 37.5%;
        margin-left: 12.5%;
    }
    .view--mozaic .work .work__item:nth-child(2),
    .view--mozaic .work .work__item:nth-child(3),
    .view--mozaic .work .work__item:nth-child(6) {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        margin-left: 12.5%;
    }
    .view--mozaic .work .work__item:nth-child(4) {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        margin-left: 25%;
    }
    .view--mozaic .work .work__item:nth-child(7) {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        margin-left: 50%;
    }
    .view--mozaic .work .work__item:nth-child(8) {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 37.5%;
        flex-preferred-size: 37.5%;
        max-width: 37.5%;
        margin-left: 25%;
    }
    .view--mozaic .work .work__item:nth-child(1) {
        top: -25vw;
        margin-bottom: -25vw;
        padding-bottom: 25vw;
    }
    .view--mozaic .work .work__item:nth-child(3) {
        top: -13vw;
        margin-bottom: -13vw;
        padding-bottom: 20vw;
    }
    .view--mozaic .work .work__item:nth-child(5) {
        padding-bottom: 8vw;
    }
    .view--mozaic .work .work__item:nth-child(6) {
        margin-top: 20vw;
        margin-bottom: -20vw;
    }
    .view--mozaic .work .work__item:nth-child(7) {
        padding-bottom: 8vw;
    }
    .view--mozaic .work .work__item.work__item--last {
        margin: 0 12.5% 0 auto;
    }
}
.view--mozaic .work .btn__wording {
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .view--list .work__inner {
        display: flex;
        flex: 0 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .view--list .work__item-group {
        display: block;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-left: 25%;
    }
    .view--list .work .paragraph {
        margin: 0;
        line-height: 1.5rem;
    }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) and (max-width: 1200px) {
    .view--list .work .item__text-wrapper .title {
        margin-bottom: 0;
        font-size: 1.1rem !important;
    }
    .view--list .work .paragraph {
        font-size: 0.7rem;
        line-height: 1.2rem;
    }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) and (max-width: 1400px) {
    .view--list .work .item__text-wrapper .title {
        font-size: 1.6rem !important;
    }
}
@media screen and (min-width: 1024px) and (min-width: 1201px) and (max-width: 1550px) {
    .view--list .work .item__text-wrapper .title {
        margin-bottom: 5px;
    }
    .view--list .work .paragraph {
        font-size: 0.75rem;
        line-height: 1.3rem;
    }
}
.work-detail__container {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .work-detail__container {
        margin-top: 18.125vw;
    }
}
.work-detail .bkg-text__content .bkg-text--all {
    margin-right: 20px;
}
.work-detail .bkg-text__content .bkg-text__arrow {
    margin-right: 20px;
}
.work-detail .bkg-text__content .bkg-text__arrow:last-child {
    margin-right: 0px;
    margin-left: 20px;
}
.work-detail .bkg-text-link:hover path {
    fill: #f00;
}
.work-detail .bkg-text-link.link--previous:hover path.arrow__path--first {
    animation: arrow 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
.work-detail .bkg-text-link.link--previous:hover path.arrow__path--second {
    animation: arrow__second 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
.work-detail .bkg-text-link.link--next:hover path.arrow__path--first {
    animation: arrow__reverse 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
.work-detail .bkg-text-link.link--next:hover path.arrow__path--second {
    animation: arrow__reverse_second 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
.work-detail__container__inner {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .work-detail__container__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
    }
}
.work-detail .module__slider {
    margin-top: 50px;
}
@media screen and (min-width: 1024px) {
    .work-detail .module__slider {
        margin-top: 150px;
    }
}
.work-detail .module__slider .title {
    margin-bottom: 20px;
}
.professions .breadcrumb {
    display: none;
}
@media screen and (min-width: 1024px) {
    .professions .breadcrumb {
        display: block;
    }
}
.professions .img-wrapper__inner {
    width: 100%;
}
.professions .page-intro-scroll {
    padding-top: 30px;
    padding-bottom: 50px;
    margin-bottom: 50px;
    padding-bottom: 0;
    flex-wrap: initial;
}
@media screen and (min-width: 768px) {
    .professions .page-intro-scroll {
        padding-top: 40px;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        flex-preferred-size: 100%;
        max-width: 100%;
        margin-left: 0%;
        flex-wrap: wrap;
    }
}
@media screen and (min-width: 1024px) {
    .professions .page-intro-scroll {
        padding-top: 50px;
        margin-bottom: 100px;
    }
}
.professions .page-intro-scroll__content {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
}
@media screen and (min-width: 768px) {
    .professions .page-intro-scroll__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        flex-preferred-size: 100%;
        max-width: 100%;
    }
}
.professions .page-intro-scroll__title {
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .professions .page-intro-scroll__title {
        margin-bottom: 30px;
        margin-left: 25%;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 1024px) {
    .professions .page-intro-scroll__container {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 25%;
    }
}
.professions .page-intro-scroll__inner {
    align-items: flex-start;
}
@media screen and (min-width: 1024px) {
    .professions .page-intro-scroll__inner .scroll-indicator {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        display: block;
        align-self: flex-end;
    }
}
.professions .page-intro-scroll__text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #f00 !important;
    margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
    .professions .page-intro-scroll__text {
        font-size: 1.333333333333333rem;
        line-height: 1.944444444444444rem;
    }
}
@media screen and (min-width: 1024px) {
    .professions .page-intro-scroll__text {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
    }
}
.professions .page-intro-scroll .mobile-scroll {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 25%;
    flex-preferred-size: 25%;
    max-width: 25%;
    padding-top: 60px;
}
@media screen and (min-width: 768px) {
    .professions .page-intro-scroll .mobile-scroll {
        order: 1;
    }
}
.professions .page-intro-scroll .page-title {
    line-height: 40px;
    font-size: 1.666666666666667rem;
}
@media screen and (min-width: 768px) {
    .professions .page-intro-scroll .page-title {
        line-height: 90px;
        font-size: 5rem;
    }
}
@media screen and (min-width: 1024px) {
    .professions .page-intro-scroll .page-title {
        line-height: 110px;
        font-size: 6.666666666666667rem;
    }
}
.professions .link-wrapper {
    margin: 30px 0px;
}
.professions .link-wrapper .btn {
    width: 100%;
}
.professions__inner {
    position: relative;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.professions__item {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .professions__item {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-bottom: 100px;
    }
}
.professions .item__img-wrapper {
    position: relative;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.professions .item__img {
    position: relative;
    z-index: 2;
}
.professions .item__bkg-text {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    margin-top: -0.6em;
    color: #333745;
    opacity: 0.1;
}
@media screen and (min-width: 1024px) {
    .professions .item__bkg-text {
        left: 50%;
    }
}
.professions .item__content {
    position: relative;
    z-index: 3;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .professions .item__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 60%;
        flex-preferred-size: 60%;
        max-width: 60%;
        margin-left: 20%;
    }
}
.professions .item__catchphrase {
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.666666666666667rem;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .professions .item__catchphrase {
        margin-top: 40px;
        margin-bottom: 50px;
        line-height: 1;
        font-size: 3.333333333333333rem;
    }
}
.professions .item__paragraph {
    line-height: 30px;
    margin-bottom: 50px;
}
.professions .content__text {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
    .professions .item__bkg-text {
        display: none;
    }
}
@media screen and (min-width: 1024px) {
    .professions .professions__item:nth-child(odd) {
        margin-left: 12.5%;
    }
    .professions .professions__item:nth-child(odd) .item__bkg-text {
        right: -40%;
        left: auto;
        text-align: right;
    }
    .professions .professions__item:nth-child(even) {
        margin-left: 25%;
    }
    .professions .professions__item:nth-child(even) .item__bkg-text {
        left: -40%;
    }
}
.establishments__map {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .establishments__map {
        margin-bottom: 100px;
    }
}
.establishments .map__inner {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .establishments .map__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
    }
}
.establishments .map__inner img {
    display: block;
    width: 100%;
    height: auto;
}
.establishments #map__iframe {
    width: 100%;
    height: 900px;
    padding-top: 70px;
    border: 0;
    background: #fff;
    border: 1px solid #eee;
}
@media screen and (min-width: 1024px) {
    .establishments .page-intro {
        padding-bottom: 100px;
    }
}
.sitemap {
    color: #aaa;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.sitemap__content {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
@media screen and (max-width: 1023px) {
    .sitemap__content {
        background-color: #fff;
    }
}
@media screen and (min-width: 1024px) {
    .sitemap__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 12.5%;
        margin-bottom: 65px;
    }
}
.sitemap__group {
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .sitemap__group {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        margin-bottom: 25px;
        padding-right: 10px;
    }
}
.sitemap a.sitemap__title {
    transition: 0.3s color linear;
}
.sitemap a.sitemap__title:hover {
    color: #f00;
}
.sitemap__back {
    width: 100%;
    padding: 0;
    text-align: left;
    border: none;
    background: transparent;
    -webkit-appearance: none;
}
@media screen and (min-width: 1024px) {
    .sitemap__back {
        display: none;
    }
}
.sitemap__title {
    position: relative;
    display: block;
    color: #333745;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.333333333333333rem;
}
@media screen and (max-width: 1023px) {
    .sitemap__title {
        padding-top: 20px;
        padding-bottom: 20px;
        border-top: 1px solid #eee;
    }
    .sitemap__title--back {
        padding-left: 45px;
    }
}
@media screen and (max-width: 767px) {
    .sitemap__title--back {
        padding-left: 35px;
    }
}
@media screen and (min-width: 1024px) {
    .sitemap__title {
        margin-bottom: 40px;
        font-size: 1.166666666666667rem;
    }
    .sitemap__title:after {
        content: '';
        display: block;
        width: 50px;
        padding-top: 15px;
        border-bottom: 2px solid #f00;
    }
    .sitemap__title--back {
        display: none;
    }
}
@media screen and (min-width: 1280px) {
    .sitemap__title {
        font-size: 1.555555555555556rem;
    }
}
@media screen and (min-width: 1400px) {
    .sitemap__title {
        font-size: 1.666666666666667rem;
    }
}
.sitemap__arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: rotate(-90deg) translateX(4px);
    pointer-events: none;
}
.sitemap__arrow--reverse {
    right: auto;
    left: 10px;
    transform: rotate(90deg) translateX(-4px);
}
@media screen and (min-width: 768px) {
    .sitemap__arrow {
        right: 20px;
    }
    .sitemap__arrow--reverse {
        right: auto;
        left: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .sitemap__arrow {
        display: none;
    }
}
.sitemap__link-group {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.sitemap__link-group a {
    font-size: 0.833333333333333rem;
    color: currentColor;
    transition: 0.3s color linear;
}
.sitemap__link-group a:hover {
    color: #f00;
}
@media screen and (max-width: 1023px) {
    .sitemap__link-group li {
        border-top: 1px solid #eee;
        padding: 20px 0;
    }
}
@media screen and (min-width: 1024px) {
    .sitemap__link-group li {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 1023px) {
    .sitemap__wrapper {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 10;
        overflow: auto;
        background-color: #fff;
        transform: translateX(100%);
        transition: 0.5s transform ease-in;
    }
    .sitemap__wrapper.is-active {
        transform: translateX(0);
    }
}
.sitemap a {
    text-decoration: none;
}
@media screen and (max-width: 767px) {
    .sitemap .page-intro__title {
        margin-bottom: 0;
    }
}
@media screen and (min-width: 768px) {
    .legals__inner {
        padding-top: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .legals__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-left: 12.5%;
        padding-top: 100px;
    }
}
.legals__section {
    padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .legals__section {
        padding-bottom: 90px;
    }
}
.bkg-grid {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.bkg-grid__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 768px) {
    .bkg-grid__inner {
        padding-right: 20px;
        padding-left: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .bkg-grid__inner {
        padding-right: 0;
        padding-left: 0;
    }
}
.bkg-grid__stripe {
    flex: 1 1 auto;
    max-width: 100%;
    border-right: 1px solid #eee;
    transform-origin: top;
}
.bkg-grid__stripe:first-child {
    border-left: 1px solid #eee;
}
.bkg-grid__stripe:last-child {
    border-right: none;
}
@media screen and (min-width: 1024px) {
    .bkg-grid__stripe:first-child {
        border-left: none;
    }
}
.intro {
    display: none;
}
@media screen and (min-width: 1024px) {
    .intro {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999;
        overflow: hidden;
        display: block;
        width: 100vw;
        height: 100vh;
    }
    .intro__out {
        display: flex;
        flex: 0 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
        opacity: 0;
    }
    .intro__stripe {
        position: relative;
        overflow: hidden;
        flex: 1 1 auto;
        max-width: 100%;
        transform-origin: center;
    }
    .intro .stripe__inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
    }
    .intro__in {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        background: #fff;
    }
}
.controls {
    padding-right: 25px;
    padding-left: 25px;
}
.controls__inner {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.controls__arrow {
    display: block;
    width: 26.91px;
    height: 14px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px;
    padding: 0;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.4s ease;
}
.controls__arrow:not(.disabled):hover path {
    fill: #f00;
}
.controls__arrow--right {
    transform: scaleX(-1);
}
.controls__arrow.disabled {
    opacity: 0.3;
    cursor: auto;
    pointer-events: none;
}
.activity .controls__arrow {
    margin-bottom: 0;
}
.activity .controls__arrow:first-child {
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .controls__arrow:not(.disabled):hover path {
        fill: #f00;
    }
    html:not([data-whatinput='touch'])
        .controls__arrow:not(.disabled):hover
        .controls__icons {
        animation: arrow 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
    }
}
.controls__icons {
    width: 73.82px;
    display: inline-block;
    position: relative;
}
.controls__arrow-icon + .controls__arrow-icon {
    position: absolute;
    top: 0;
    left: 10px;
    transform: translateX(100%);
}
@-moz-keyframes arrow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@-webkit-keyframes arrow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@-o-keyframes arrow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes arrow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.header-site {
    position: relative;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 15px 20px;
    background-color: #fff;
}
@media screen and (max-width: 1023px) {
    .header-site {
        height: 58px;
    }
}
.header-site.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
}
.header-site button {
    border: 0;
    background: none;
    -webkit-appearance: none;
}
.header-site button:focus {
    outline: 0;
}
@media screen and (max-width: 1023px) {
    .header-site.is-fixed-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 1023px) {
    .header-site__logo {
        position: relative;
        top: -9px;
        width: 130px;
    }
}
@media screen and (max-width: 767px) {
    .header-site__logo {
        top: 0;
        width: 100px;
    }
}
@media screen and (min-width: 1024px) {
    .header-site__logo {
        width: 145px;
        height: 73px;
        padding: 15px 0;
    }
}
.header-site__search {
    position: relative;
    top: 1px;
    border: 0;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
}
.header-site__search path {
    transition: 0.3s all linear;
}
.header-site__search:hover path {
    fill: #f00;
}
.header-site__search:focus {
    outline: 0;
}
.header-site__contact {
    margin: 0 15px;
    text-decoration: none;
}
.header-site__contact path {
    transition: 0.3s all linear;
}
.header-site__contact:hover path {
    fill: #f00;
}
@media screen and (min-width: 1024px) {
    .header-site__contact {
        display: inline-block;
        position: relative;
        top: 3px;
        margin: 0 0 0 25px;
    }
}
.header-site .is-active path {
    fill: #f00;
}
@media screen and (min-width: 1024px) {
    .header-site {
        padding: 0 20px;
    }
}
@media screen and (min-width: 1280px) {
    .header-site {
        padding: 0 50px;
    }
}
.header-site .burger {
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.header-site .burger-wrap {
    padding: 0;
}
.nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
@media screen and (min-width: 1024px) {
    .nav {
        display: flex;
        margin-right: 10px;
    }
}
@media screen and (max-width: 1023px) {
    .nav-wrap {
        position: fixed;
        top: 58px;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #fff;
        overflow: scroll;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s visibility ease-in;
    }
}
@media screen and (min-width: 1024px) {
    .nav-wrap {
        display: flex;
        align-items: flex-start;
        align-self: flex-end;
    }
}
.nav ul {
    padding: 0;
    list-style-type: none;
}
.nav button {
    background-color: transparent;
    border: none;
    -webkit-appearance: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.888888888888889rem;
    transition: 0.3s color linear;
    cursor: pointer;
}
@media screen and (min-width: 1024px) {
    .nav button:hover {
        color: #f00;
    }
}
.nav button:focus {
    outline: none;
}
.nav a:not(.btn) {
    color: currentColor;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: 0.3s color linear;
}
@media screen and (min-width: 1024px) {
    .nav a:not(.btn):hover {
        color: #f00;
    }
}
@media screen and (max-width: 1023px) {
    .nav__item {
        display: block;
    }
    .nav__item:not(:last-child) {
        border-bottom: 1px solid #eee;
    }
}
@media screen and (min-width: 1024px) {
    .nav__item:hover .nav__link:after {
        transform: scaleX(1);
    }
    .nav__item:hover .nav__subnav {
        opacity: 1;
        visibility: visible;
    }
}
.nav__link {
    position: relative;
    padding: 20px 50px 20px 20px;
    font-size: 0.888888888888889rem;
}
@media screen and (min-width: 1024px) {
    .nav__link {
        padding: 0 15px 30px;
    }
}
@media screen and (max-width: 1023px) {
    .nav__link {
        display: flex;
        width: 100%;
    }
}
.nav__link:after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -1px;
    border-bottom: 2px solid #f00;
    transform: scaleX(0);
    transition: 0.3s transform ease-in;
    transform-origin: 0% 0%;
}
.nav__link svg {
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -4.5px;
    transform: rotate(-90deg) translateY(-50%);
}
@media screen and (min-width: 1024px) {
    .nav__link svg {
        display: none;
    }
}
.nav__back {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 20px 20px 40px;
    border-bottom: 1px solid #eee !important;
    text-align: left;
}
.nav__back svg {
    position: absolute;
    top: 50%;
    left: 15px;
    margin-top: -4.5px;
    transform: rotate(90deg);
}
@media screen and (min-width: 1024px) {
    .nav__back {
        display: none;
    }
}
.subnav {
    display: flex;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #fff;
}
@media screen and (max-width: 1023px) {
    .subnav {
        display: none;
        top: 0;
        bottom: 0;
        left: 100%;
        z-index: 10;
        min-height: calc(100vh - 88px);
        transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    }
}
@media screen and (min-width: 1024px) {
    .subnav {
        bottom: -1px;
        padding: 25px 0 50px;
        transform: translateY(100%);
        box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.15);
        transition:
            0.3s opacity linear,
            0.3s visibility linear;
        opacity: 0;
        visibility: hidden;
    }
}
.subnav .home-title {
    display: block;
    margin-bottom: 20px;
}
@media screen and (max-width: 1279px) {
    .subnav .home-title {
        font-size: 3rem;
    }
}
.subnav__intro {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 25%;
    flex-preferred-size: 25%;
    max-width: 25%;
    padding-left: 20px;
}
@media screen and (min-width: 1280px) {
    .subnav__intro {
        padding-left: 50px;
    }
}
@media screen and (max-width: 1023px) {
    .subnav__intro {
        display: none;
    }
}
@media screen and (max-width: 1023px) {
    .subnav__nav li:not(:last-child) {
        border-bottom: 1px solid #eee;
    }
}
@media screen and (min-width: 1024px) {
    .subnav__nav {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 37.5%;
        flex-preferred-size: 37.5%;
        max-width: 37.5%;
        margin-left: 6.25%;
        margin-top: 70px;
        column-count: 2;
        column-gap: 50px;
    }
    .subnav__nav--single-col {
        column-count: 1;
    }
    .subnav__nav li:not(:last-child) {
        margin-bottom: 25px;
    }
    .subnav__nav li {
        -webkit-column-break-inside: avoid;
        column-break-inside: avoid;
        page-break-inside: avoid;
    }
}
@media screen and (min-width: 1280px) {
    .subnav__nav {
        margin-top: 80px;
    }
}
.subnav__nav-link {
    font-size: 0.833333333333333rem;
}
@media screen and (max-width: 1023px) {
    .subnav__nav-link {
        display: block;
        padding: 20px;
    }
}
.subnav__subnav {
    color: #aaa;
    font-size: 0.722222222222222rem;
}
@media screen and (max-width: 1023px) {
    .subnav__subnav li:first-child {
        margin-top: -15px;
    }
}
@media screen and (min-width: 1024px) {
    .subnav__subnav li:not(:last-child) {
        margin-bottom: 10px;
    }
    .subnav__subnav li:first-child {
        margin-top: 15px;
    }
}
@media screen and (max-width: 1023px) {
    .subnav__subnav-link {
        display: block;
        padding: 10px 20px 10px 30px;
    }
}
.subnav__push {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 25%;
    flex-preferred-size: 25%;
    max-width: 25%;
    margin-left: 6.25%;
    padding-top: 25px;
    padding-right: 20px;
}
@media screen and (min-width: 1280px) {
    .subnav__push {
        padding-right: 50px;
    }
}
.subnav__push img {
    width: 100%;
    display: block;
}
.subnav__push .title {
    display: block;
    margin: 10px 0 20px;
}
@media screen and (max-width: 1023px) {
    .subnav__push {
        display: none;
    }
}
.sup-header {
    position: relative;
    z-index: 50;
    font-weight: 600;
    font-size: 0.666666666666667rem;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
}
.sup-header a {
    text-decoration: none;
    color: currentColor;
    transition: 0.3s color linear;
}
.sup-header a:not(.btn):hover {
    color: #f00;
}
.sup-header .headline {
    display: block;
}
@media screen and (max-width: 1023px) {
    .sup-header .headline {
        margin-bottom: 10px;
    }
}
.sup-header button {
    border: 0;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    background-color: transparent;
    color: #aaa;
    transition: 0.3s color linear;
    cursor: pointer;
    -webkit-appearance: none;
}
.sup-header button path {
    transition: 0.3s all linear;
}
.sup-header button span {
    display: flex;
    align-items: center;
}
.sup-header button:hover {
    color: #f00;
}
.sup-header button:hover path {
    fill: #f00;
}
.sup-header button:focus {
    outline: 0;
}
.sup-header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.sup-header .btn {
    margin-top: 20px;
}
.sup-header__stock {
    display: flex;
    align-items: center;
    margin-left: -10px;
    font-family: 'Inter', sans-serif;
    font-weight: $font-weight__medium;
    font-size: 0.666666666666667rem;
    line-height: 1;
    color: #aaa;
}
.sup-header__stock .stock-header__value {
    font-weight: 600;
    font-size: 0.777777777777778rem;
    color: #fff;
    padding-right: 5px;
}
@media screen and (max-width: 374px) {
    .sup-header__stock svg {
        width: 30px;
    }
}
@media screen and (min-width: 375px) {
    .sup-header__stock .stock-header__value {
        padding-right: 10px;
        font-size: 0.888888888888889rem;
    }
}
.sup-header__current {
    display: flex;
    align-items: center;
    margin-right: 15px;
}
@media screen and (max-width: 767px) {
    .sup-header__current {
        display: none;
    }
}
.sup-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 20px;
}
.sup-header__content > div:first-child {
    display: flex;
}
@media screen and (min-width: 1280px) {
    .sup-header__content {
        padding: 0 50px;
    }
}
@media screen and (max-width: 1023px) {
    .sup-header__col:not(:last-child) {
        margin-bottom: 25px;
    }
}
@media screen and (min-width: 1024px) {
    .sup-header__col {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
    }
    .sup-header__col:first-child {
        margin-left: 12.5%;
    }
}
.sup-header__lang {
    display: flex;
    color: #aaa;
    font-size: 0.611111111111111rem;
    letter-spacing: 4px;
}
.sup-header__lang li:first-child {
    margin-right: 5px;
}
@media screen and (min-width: 375px) {
    .sup-header__lang li:first-child {
        margin-right: 15px;
    }
}
.sup-header__lang .is-active {
    color: #fff;
}
.sup-header__btn {
    font-size: 0.666666666666667rem;
}
.sup-header__btn span:after {
    content: '';
    position: relative;
    top: 2px;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: #aaa transparent transparent transparent;
    transition: 0.3s all linear;
}
.sup-header__btn:hover span:after {
    border-color: #f00 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
    .sup-header__btn {
        margin-left: -20px;
    }
}
.sup-header__social {
    position: absolute;
    top: 110px;
    right: 50px;
}
.sup-header__social path {
    transition: 0.3s all linear;
}
.sup-header__social a:hover path {
    fill: #f00;
}
@media screen and (max-width: 1023px) {
    .sup-header__social {
        display: none;
    }
}
.sup-header__more {
    position: relative;
    overflow: hidden;
    height: 0;
    font-size: 0.833333333333333rem;
    background-image: url('/static/images/bg-supheader.svg');
    background-size: 610px;
    background-position: right -65px bottom -220px;
    background-repeat: no-repeat;
}
.sup-header__more li:not(:last-child) {
    margin-bottom: 15px;
}
@media screen and (max-width: 1023px) {
    .sup-header__more {
        padding: 0 20px;
    }
}
.sup-header__more-inner {
    position: relative;
    padding: 20px 0 50px;
}
@media screen and (min-width: 1024px) {
    .sup-header__more-inner {
        display: flex;
        padding: 35px 0 130px;
    }
}
.sup-header__countries {
    column-count: 2;
}
.sup-header__close {
    position: absolute;
    right: 0;
    bottom: 15px;
    display: flex;
    align-items: center;
    padding: 0;
    letter-spacing: 4px;
    font-size: 0.611111111111111rem;
    text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
    .sup-header__close {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 12.5%;
        flex-preferred-size: 12.5%;
        max-width: 12.5%;
        right: 50px;
        bottom: 35px;
    }
}
.menu__search {
    will-change: transform;
    position: absolute;
    top: 58px;
    left: 100%;
    z-index: 10;
    overflow: hidden;
    display: none;
    width: 100vw;
    height: 100vh;
    background: #333745;
}
@media screen and (min-width: 1024px) {
    .menu__search {
        top: 78px;
        background: transparent;
    }
}
.menu__search__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
}
.menu__search__empty-col {
    display: none;
}
@media screen and (min-width: 1024px) {
    .menu__search__empty-col {
        display: block;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        padding-top: 100vh;
        width: 100%;
        height: 100%;
    }
}
.menu__search__search {
    position: relative;
    z-index: 0;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .menu__search__search {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        overflow: hidden;
    }
}
.menu__search .search__inner {
    position: relative;
    z-index: 2;
    padding: 0;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
}
@media screen and (min-width: 1024px) {
    .menu__search .search__inner {
        align-items: center;
    }
    .menu__search .search__inner.no-result {
        align-items: center;
    }
    .menu__search .search__inner.has-result {
        align-items: inherit;
    }
    .menu__search .search__inner.has-result .search__results {
        padding-bottom: 40px;
    }
}
.menu__search .search__background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #333745;
}
.menu__search .search__container {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    overflow-y: auto;
    padding: 0 20px 80px;
}
@media screen and (min-width: 1024px) {
    .menu__search .search__container {
        padding: 40px 16.666666%;
    }
}
.menu__search .search__head {
    margin-bottom: 70px;
    padding-top: 80px;
}
@media screen and (min-width: 1024px) {
    .menu__search .search__head {
        margin-bottom: 90px;
        padding-top: 0;
    }
}
.menu__search .search__wrapper {
    position: relative;
    z-index: 1;
}
.menu__search .search__model {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    overflow: hidden;
    margin: 0;
    width: 100%;
    height: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform: translateY(-40%);
}
@media screen and (min-width: 768px) {
    .menu__search .search__model {
        transform: translateY(-41%);
    }
}
@media screen and (min-width: 1024px) {
    .menu__search .search__model {
        transform: translateY(-40%);
    }
}
.menu__search .search__fake-input {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: none;
    overflow: hidden;
    margin: 0;
    padding-right: 5px;
    max-width: 100%;
    height: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media screen and (min-width: 1280px) {
    .menu__search .search__fake-input {
        position: absolute;
        bottom: -24px;
        left: 0;
    }
}
.menu__search .search__form {
    position: relative;
    z-index: 4;
    margin-bottom: 50px;
    border-bottom: 1px solid #404040;
}
.menu__search .search__input {
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #404040;
    border-left: 0;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 30px;
    width: 100%;
    height: 90px;
    background: transparent;
}
@media screen and (min-width: 1280px) {
    .menu__search .search__input {
        padding-top: 0;
        padding-bottom: 60px;
        height: 220px;
    }
}
.menu__search .search__input:focus {
    outline: 0;
    caret-color: #f00;
}
.menu__search .search__results {
    margin-top: 10px;
}
.menu__search .search__result {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 30px;
    text-decoration: none;
}
.menu__search .search__result:hover .search-result {
    color: #fff;
}
.menu__search .search__result:hover .search__result__btn {
    opacity: 1;
}
.menu__search .search__result .search-result {
    transition: color 0.4s;
}
.menu__search .search__result__title {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .menu__search .search__result__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
    }
}
.menu__search .search__result__btn {
    display: none;
}
@media screen and (min-width: 1024px) {
    .menu__search .search__result__btn {
        display: block;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        opacity: 0;
        transition: opacity 0.4s;
    }
}
.menu__search .search__results_wrap {
    display: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 300ms ease-in-out;
}
.menu__search .mobile-submit-display {
    display: none !important;
}
.menu__search .search__results::-webkit-scrollbar {
    display: none;
    width: 0;
    opacity: 0;
}
.menu__search .search__input:focus + p:after {
    animation: blink-animation 1s step-start infinite;
}
.menu__search .title--profile {
    margin-bottom: 30px;
}
.menu__search.noBlinker .search__fake-input:after {
    content: none;
}
.menu__search .info1 {
    color: #fff;
}
@-moz-keyframes blink-animation {
    33.3% {
        opacity: 1;
    }
}
@-webkit-keyframes blink-animation {
    33.3% {
        opacity: 1;
    }
}
@-o-keyframes blink-animation {
    33.3% {
        opacity: 1;
    }
}
@keyframes blink-animation {
    33.3% {
        opacity: 1;
    }
}
.btn {
    display: flex;
}
.link-wrapper--right .btn {
    justify-content: flex-end;
}
.link-wrapper--center .btn {
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .link-wrapper--right-mobile .btn {
        justify-content: flex-end;
        text-align: right;
    }
}
.btn:hover {
    cursor: pointer;
}
.btn:hover .btn__wording {
    color: #f00;
}
.btn__wording {
    display: inline-block;
    vertical-align: middle;
    transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: calc(100% - 80px);
    margin-left: 0;
    z-index: 1;
}
.btn__wording + .btn__lines {
    margin-left: 20px;
}
.btn__lines {
    position: relative;
    top: 12px;
    display: inline-block;
    overflow: hidden;
    margin-left: 0;
    width: 50px;
    height: 2px;
    vertical-align: middle;
}
.btn__lines + .btn__wording {
    margin-left: 20px;
}
.btn--big .btn__lines {
    top: 59px;
}
.btn__line {
    will-change: transform;
    display: block;
    width: 50px;
    height: 2px;
    background: #333745;
}
.btn__hidden__line {
    will-change: transform;
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 2px;
    background: #f00;
}
.btn__icon {
    margin-right: 10px;
}
.btn--left {
    text-align: left;
}
.btn--large {
    align-items: flex-end;
}
.btn--large .btn__lines {
    top: auto;
}
@media screen and (min-width: 768px) {
    .btn--large .btn__lines {
        width: 100px;
        height: 2px;
    }
}
@media screen and (min-width: 768px) {
    .btn--large .btn__wording {
        font-size: 1.111111111111111rem;
    }
}
@media screen and (min-width: 768px) {
    .btn--large .btn__line {
        width: 100px;
        height: 2px;
    }
}
@media screen and (min-width: 768px) {
    .btn--large .btn__hidden__line {
        position: absolute;
        top: 0;
        left: -100px;
        width: 100px;
        height: 2px;
    }
}
.btn--gray .btn__line {
    background: #aaa;
}
.btn--white .btn__line {
    background: #fff;
}
.btn--black {
    color: #333745;
}
.btn--black .btn__line {
    background: #333745;
}
.btn--red .btn__line {
    background: #f00;
}
.cookie {
    z-index: 30;
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 25px 40px 25px 0;
    background: #000;
}
.cookie__wrapper {
    width: 80%;
    margin-left: 20px;
    text-align: left;
}
@media screen and (min-width: 1024px) {
    .cookie__wrapper {
        margin: 0 auto;
        text-align: center;
    }
}
.cookie__paragraph {
    color: #fff;
    margin: 0;
}
.cookie__paragraph a {
    color: #fff;
    text-decoration: underline;
}
.cookie__button {
    position: absolute;
    right: 30px;
    cursor: pointer;
    width: 21px;
    height: 21px;
    background: none;
    border: none;
    outline: none;
}
.cookie__button .btn_icn {
    position: absolute;
    left: 0;
    height: 2px;
    display: inline-block;
    width: 21px;
    background: #fff;
    transform: rotate(45deg);
    transition: background-color 0.25s ease;
}
.cookie__button .btn_icn:last-child {
    transform: rotate(-45deg);
}
.cookie__button:hover .btn_icn {
    background: #f00;
}
@media screen and (min-width: 1024px) {
    .cookie__button {
        right: 7.5%;
    }
}
.link-wrapper {
    display: block;
}
.link-wrapper--right {
    text-align: right;
}
.link-wrapper--center {
    text-align: center;
}
.link-wrapper--left {
    text-align: left;
}
.link-wrapper--left.article-featured__item-link .btn {
    justify-content: flex-start;
}
.image-block {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
}
.image-block__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.image-block__image--content-page {
    top: -50%;
    height: auto;
}
@media screen and (min-width: 1024px) {
    .image-block__image--content-page {
        top: 0;
        height: 100%;
    }
}
.about-block .image-block {
    padding-top: 116.65%;
}
.work-block .image-block {
    padding-top: 100%;
}
.work-block .image-block--content-page {
    padding-top: 50%;
}
@media screen and (min-width: 1024px) {
    .work-block .image-block--content-page {
        padding-top: 100%;
    }
}
.contact .image-block {
    padding-top: 110%;
}
.market-block .image-block,
.persona-block .image-block,
.news-detail .content__intro .image-block,
.work .image-block,
.work-detail .text-img__img .image-block,
.work-detail .work-detail__quote .image-block,
.work-detail .work-detail__module .image-block,
.medias .image-block,
.stock .image-block,
.heritage-slider .image-block {
    padding-top: 100%;
}
.news-detail .content-image .image-block {
    padding-top: 58%;
}
.news-detail .content-image .image-block--full {
    padding-top: 76%;
}
.ambitions .ambition__image .image-block {
    padding-top: 43.8%;
}
.work-detail__content .image-block.content__img-1 {
    padding-top: 56.25%;
}
.publications .image-block,
.professions .image-block {
    padding-top: 56.25%;
}
.simple-slider .image-block {
    padding-top: 68.7%;
}
.quote-block .image-block,
.news-block .image-block {
    padding-top: 106%;
}
.news-block .image-block__image {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page-intro-text-image__image .image-block {
    padding-top: 133%;
}
.simple-slider {
    position: relative;
    width: calc(100vw - 20px);
    margin-right: auto;
    margin-left: auto;
}
@media screen and (min-width: 768px) {
    .simple-slider {
        width: calc(100vw - 40px);
    }
}
@media screen and (min-width: 1024px) {
    .simple-slider {
        width: 100vw;
    }
}
.simple-slider__inner {
    overflow: hidden;
    width: 100%;
}
.simple-slider__controls {
    position: absolute;
    left: 0;
    top: calc(50px + 0.5rem);
    z-index: 30;
    padding-top: 68.5%;
    width: 26.4%;
}
@media screen and (min-width: 1024px) {
    .simple-slider__controls {
        margin-left: 50%;
        padding-top: 0;
        top: 0;
        width: 12.5%;
    }
}
.simple-slider .controls__pagination {
    display: none;
}
@media screen and (min-width: 768px) {
    .simple-slider .controls__pagination {
        position: absolute;
        top: -50px;
        left: -60px;
        display: block;
    }
}
@media screen and (min-width: 1024px) {
    .simple-slider .controls__pagination {
        position: static;
        padding-top: 160px;
    }
}
@media screen and (min-width: 1280px) {
    .simple-slider .controls__pagination {
        padding-top: 250px;
    }
}
.simple-slider .controls__arrows__inner {
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
    .simple-slider .controls__arrows__inner {
        display: block;
        margin-top: 120px;
        margin-left: 0;
        text-align: center;
        transform: none;
    }
}
.simple-slider .controls__arrow {
    display: block;
    margin: 0 auto 50px;
    cursor: pointer;
}
@media screen and (min-width: 768px) {
    .simple-slider .controls__arrow {
        display: inline-block;
        margin: 0;
    }
}
.simple-slider .controls__arrow .arrow__path--second {
    transform: translateX(50px);
}
.simple-slider .controls__arrow:hover {
    fill: #f00;
}
.simple-slider .controls__arrow:hover path.arrow__path--first {
    animation: arrow 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
.simple-slider .controls__arrow:hover path.arrow__path--second {
    animation: arrow__second 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
.simple-slider .controls__arrow--right {
    transform: scaleX(-1);
}
@media screen and (min-width: 768px) {
    .simple-slider .controls__arrow--left {
        margin-right: 30px;
    }
}
@media screen and (min-width: 1024px) {
    .simple-slider .controls__arrow--left {
        margin-right: 30%;
    }
}
.simple-slider .pagination__slider {
    overflow: hidden;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .simple-slider .pagination__slider {
        position: absolute;
        top: 0;
        left: -24px;
        padding-top: 60px;
    }
}
@media screen and (min-width: 1280px) {
    .simple-slider .pagination__slider {
        position: absolute;
        top: 0;
        left: -70px;
        padding-top: 30px;
        width: 140%;
    }
}
.simple-slider .pagination__slider__inner {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.simple-slider .pagination__separator {
    margin-top: 40px;
    width: 160px;
    height: 2px;
    background: #333745;
}
@media screen and (min-width: 1024px) {
    .simple-slider .pagination__separator {
        margin-top: 0;
        width: 50%;
    }
}
.simple-slider .pagination__total {
    width: 160px;
    text-align: right;
}
@media screen and (min-width: 1024px) {
    .simple-slider .pagination__total {
        width: 50%;
    }
}
.simple-slider__slides {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.simple-slider__slide {
    float: left;
    width: 100%;
}
.simple-slider .slide__image {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
.simple-slider .slide__content__inner {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
    margin-left: 25%;
}
@media screen and (min-width: 1024px) {
    .simple-slider .slide__content__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        flex-preferred-size: 100%;
        max-width: 100%;
        margin-left: 0%;
    }
}
.simple-slider .slide__content {
    width: 100%;
    position: absolute;
    top: 0;
}
.simple-slider .slide__content .btn {
    margin-top: 30px;
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .simple-slider .slide__content .btn {
        margin-top: 50px;
        margin-bottom: 30px;
    }
}
.simple-slider .slide__content .btn--gray {
    margin-top: 0;
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .simple-slider .slide__content .btn--gray {
        margin-top: 0;
        margin-bottom: 0;
    }
}
.footer-block {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
@media screen and (min-width: 768px) {
    .footer-block {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
.footer-block .icon-linkedin {
    position: relative;
    top: 6px;
    margin-left: 4px;
}
@media screen and (max-width: 1023px) {
    .footer-block .icon-linkedin {
        width: 24px;
    }
}
.footer-block__col {
    width: 100%;
    padding-right: 15px;
}
@media screen and (max-width: 767px) {
    .footer-block__col:not(:last-child) {
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 768px) {
    .footer-block__col {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
    }
    .footer-block__col--single {
        padding-top: 33px;
    }
}
@media screen and (min-width: 1024px) {
    .footer-block__col {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
    }
    .footer-block__col:first-child {
        margin-left: 12.5%;
    }
    .footer-block__col--single {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 12.5%;
        flex-preferred-size: 12.5%;
        max-width: 12.5%;
    }
}
.footer-block__title {
    display: block;
    margin-bottom: 10px;
    font-size: 0.833333333333333rem;
}
.footer-block__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.footer-block__list--social {
    display: flex;
    margin-top: 10px;
}
.footer-block__list--social li:not(:last-child) {
    margin: 0 10px 0 0;
}
@media screen and (max-width: 1023px) {
    .footer-block svg {
        width: 35px;
    }
}
.footer-block li:not(:last-child) {
    margin-bottom: 5px;
}
.footer-block path {
    transition: 0.3s all linear;
}
.footer-block a {
    text-decoration: none;
    color: #777;
    font-size: 0.722222222222222rem;
    transition: 0.3s color linear;
}
.footer-block a:hover {
    color: #f00;
}
.footer-block a:hover path {
    fill: #f00;
}
.page-intro {
    position: relative;
    padding-top: 30px;
    padding-bottom: 50px;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    text-align: 'bottom';
}
@media screen and (min-width: 768px) {
    .page-intro {
        padding-top: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .page-intro {
        padding-top: 150px;
    }
}
.page-intro .scroll-indicator {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 25%;
    flex-preferred-size: 25%;
    max-width: 25%;
}
@media screen and (min-width: 1024px) {
    .page-intro .scroll-indicator {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 12.5%;
        flex-preferred-size: 12.5%;
        max-width: 12.5%;
        margin-left: 12.5%;
    }
}
.page-intro .page-title {
    padding-bottom: 5px;
    font-size: 1.666666666666667rem;
    color: #333745;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .page-intro .page-title {
        padding-bottom: 10px;
        font-size: 4.444444444444445rem;
    }
}
.page-intro--publi .page-title {
    padding-bottom: 0;
}
.page-intro__title {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
    margin-bottom: 15px;
    margin-left: 0;
}
@media screen and (min-width: 768px) {
    .page-intro__title {
        margin-bottom: 20px;
        margin-left: 0;
    }
}
@media screen and (min-width: 1024px) {
    .page-intro__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-left: 25%;
    }
    .page-intro__title--sitemap {
        margin-left: 12.5%;
    }
}
.page-intro .form__newsletter {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.page-intro .form__newsletter .info1 {
    width: 100%;
    font-family: 'Playfair Display', serif;
    color: #333745;
    font-size: 0.888888888888889rem;
}
@media screen and (min-width: 1024px) {
    .page-intro .form__newsletter .info1 {
        margin-bottom: 0;
        transform: translateY(2px);
        font-size: 1.111111111111111rem;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 60%;
        flex-preferred-size: 60%;
        max-width: 60%;
    }
}
.page-intro .form__newsletter .link-wrapper {
    display: block;
    margin-top: 30px;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .page-intro .form__newsletter .link-wrapper {
        display: inline-block;
        margin-top: 0;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 40%;
        flex-preferred-size: 40%;
        max-width: 40%;
    }
}
.page-intro-text {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    padding-top: 30px;
    padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .page-intro-text {
        padding-top: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .page-intro-text {
        padding-top: 150px;
        padding-bottom: 100px;
    }
}
@media screen and (min-width: 1024px) {
    .page-intro-text__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-left: 25%;
    }
}
.page-intro-text .page-title {
    padding-bottom: 0;
}
@media screen and (min-width: 1024px) {
    .transitioned-page .page-intro-scroll .page-intro-scroll__text {
        opacity: 0;
    }
}
.page-intro-scroll {
    position: relative;
    padding-top: 40px;
    padding-bottom: 50px;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
    .page-intro-scroll {
        padding-top: 50px;
        padding-bottom: 250px;
    }
}
.page-intro-scroll .mobile-scroll {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 25%;
    flex-preferred-size: 25%;
    max-width: 25%;
    padding-top: 60px;
}
@media screen and (min-width: 1024px) {
    .page-intro-scroll .mobile-scroll {
        display: none;
    }
}
.page-intro-scroll__title {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .page-intro-scroll__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 25%;
        margin-bottom: 50px;
    }
}
.page-intro-scroll__container {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .page-intro-scroll__container {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 25%;
    }
}
.page-intro-scroll__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    text-align: 'bottom';
}
.page-intro-scroll__inner .scroll-indicator {
    display: none;
}
@media screen and (min-width: 1024px) {
    .page-intro-scroll__inner .scroll-indicator {
        display: block;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        margin-left: 0%;
    }
}
@media screen and (min-width: 1024px) {
    .page-intro-scroll__text {
        width: 100%;
    }
}
.page-intro-text-image {
    padding-top: 100px;
    padding-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .page-intro-text-image {
        padding-top: 100px;
        padding-bottom: 150px;
    }
}
.page-intro-text-image__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.page-intro-text-image__content {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .page-intro-text-image__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 12.5%;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1280px) {
    .page-intro-text-image__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 37.5%;
        flex-preferred-size: 37.5%;
        max-width: 37.5%;
    }
}
.page-intro-text-image__image {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .page-intro-text-image__image {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1280px) {
    .page-intro-text-image__image {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 37.5%;
        flex-preferred-size: 37.5%;
        max-width: 37.5%;
    }
}
.page-intro-text-image .content__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
    .page-intro-text-image .content__inner {
        padding-top: 16%;
    }
}
.page-intro-text-image .content__title {
    position: relative;
    z-index: 10;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
    .page-intro-text-image .content__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        margin-left: 33.33%;
        max-width: 150%;
        margin-bottom: 60px;
    }
}
.page-intro-text-image .content__text {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
.page-intro-text-image .text__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    text-align: 'bottom';
}
.page-intro-text-image .text__scroll {
    display: none;
}
@media screen and (min-width: 1024px) {
    .page-intro-text-image .text__scroll {
        display: block;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
}
.page-intro-text-image .text__text {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .page-intro-text-image .text__text {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        padding-right: 50px;
    }
}
.page-intro-detail {
    position: relative;
    margin-top: 85px;
    margin-bottom: 95px;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    text-align: 'bottom';
}
@media screen and (min-width: 768px) {
    .page-intro-detail {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}
@media screen and (min-width: 1024px) {
    .page-intro-detail {
        margin-top: 200px;
        margin-bottom: 100px;
    }
}
.page-intro-detail__back {
    display: block;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    margin-bottom: 50px;
    height: 100%;
}
@media screen and (min-width: 768px) {
    .page-intro-detail__back {
        margin-bottom: 80px;
    }
}
@media screen and (min-width: 1024px) {
    .page-intro-detail__back {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 12.5%;
        flex-preferred-size: 12.5%;
        max-width: 12.5%;
        margin-left: 12.5%;
        margin-bottom: 0;
    }
}
.page-intro-detail .back__inner {
    text-decoration: none;
}
@media screen and (min-width: 1024px) {
    .page-intro-detail .back__inner {
        position: absolute;
        top: 0;
        left: 12.5%;
    }
}
.page-intro-detail .back__arrow {
    margin-right: 20px;
    fill: #aaa;
    transform: rotate(90deg);
}
.page-intro-detail .scroll-indicator {
    display: none;
}
@media screen and (min-width: 1024px) {
    .page-intro-detail .scroll-indicator {
        display: block;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 12.5%;
        flex-preferred-size: 12.5%;
        max-width: 12.5%;
    }
}
.page-intro-detail__text {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .page-intro-detail__text {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
    }
}
.page-intro-detail .page-title {
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .page-intro-detail .page-title {
        margin-bottom: 40px;
    }
}
.bkg-text-block {
    margin-top: 50px;
    margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
    .bkg-text-block {
        margin-top: 150px;
        margin-bottom: 0;
    }
}
.bkg-text-block__inner {
    position: relative;
    padding-top: 170px;
    overflow: hidden;
}
@media screen and (min-width: 1280px) {
    .bkg-text-block__inner {
        padding-top: 215px;
    }
}
.bkg-text-block__bkg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 3.888888888888889rem;
}
@media screen and (min-width: 768px) {
    .bkg-text-block__bkg {
        font-size: 8.88888888888889rem;
    }
}
.bkg-text-block__text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-size: 0.833333333333333rem;
}
.bkg-text-block__text .arrow__path--second {
    transform: translateY(50px);
}
.bkg-text-block__text:hover svg g.arrow__path--first {
    animation: arrow__bottom_first 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
.bkg-text-block__text:hover svg g.arrow__path--second {
    animation: arrow__bottom_second 1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}
.bkg-text-block__text:hover svg rect {
    fill: #f00;
}
.bkg-text-block__text:hover svg path {
    stroke: #f00;
}
.bkg-text-block__arrow {
    margin-right: 20px;
    transform: translateY(10px);
    overflow: hidden;
}
@media screen and (min-width: 1024px) {
    .transitioned-page .scroll-indicator:not(.mobile) {
        opacity: 0;
    }
}
.scroll-indicator {
    text-align: center;
}
.scroll-indicator .scroll-tag__text {
    margin-right: auto;
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 20px;
    display: inline-block;
    transform: rotate(-90deg) translate(20px);
}
.scroll-indicator .scroll-tag__arrow {
    margin-right: auto;
    margin-left: auto;
    display: block;
    overflow: hidden;
}
.action-block {
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .action-block {
        margin-bottom: 150px;
    }
}
.action-block__container {
    display: flex;
    flex-direction: column;
}
@media screen and (min-width: 1024px) {
    .action-block__container {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
        flex-direction: row;
    }
}
.action-block__container-wrapper {
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .action-block__container-wrapper {
        margin-bottom: 0;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        flex-basis: 50.5%;
    }
}
.action-block .link-wrapper {
    display: flex;
    justify-content: flex-end;
}
.action-block img {
    width: 100%;
    height: auto;
}
@media screen and (min-width: 1024px) {
    .action-block img {
        height: 100%;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-left: 16.65%;
    }
}
.action-block .btn__wording {
    max-width: 100%;
    margin-bottom: 5px;
}
.action-block .paragraph {
    display: block;
}
.action-block .date {
    font-size: 0.722222222222222rem;
}
.figures-block {
    padding-bottom: 50px;
    position: relative;
}
@media screen and (min-width: 1024px) {
    .figures-block {
        padding-bottom: 150px;
    }
}
.figures-block__footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}
@media screen and (min-width: 1024px) {
    .figures-block__footer {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-top: 65px;
    }
}
.figures-block__sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12.5vw;
    z-index: 10;
    margin-top: 74px;
    background-color: #fff;
    opacity: 0.7;
    display: none;
}
@media screen and (min-width: 1024px) {
    .figures-block__sidebar {
        display: block;
    }
}
.figures-block__sidebar--left {
    left: 0;
}
.figures-block__sidebar--right {
    right: 0;
}
@media screen and (max-width: 1023px) {
    .figures-block__container {
        padding-bottom: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .figures-block__container {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 87.5%;
        flex-preferred-size: 87.5%;
        max-width: 87.5%;
        margin: 0 12.5%;
    }
}
.figures-block__content {
    position: relative;
    min-height: 115px;
}
.figures-block__inner {
    overflow: hidden;
}
@media screen and (min-width: 1024px) {
    .figures-block__inner {
        max-width: 100%;
        padding-left: 0;
        overflow: visible;
    }
}
.figures-block__inner .number {
    color: #f00;
    margin: -50px 0 0 0;
    padding: 18px 38px;
}
.figures-block__inner .paragraph {
    line-height: 1.944444444444444rem;
    font-size: 1.666666666666667rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #333745;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10px !important;
}
@media screen and (min-width: 768px) {
    .figures-block__inner .paragraph {
        margin-bottom: 20px !important;
    }
}
@media screen and (min-width: 1024px) {
    .figures-block__inner .paragraph {
        width: 90%;
        margin-bottom: 20px;
    }
}
.figures-block__slides {
    list-style-type: none;
    position: relative;
    display: flex;
    margin: 0;
    padding: 0;
    transition: transform 0.4s ease;
}
.figures-block__slides img {
    width: 100%;
    height: auto;
}
.figures-block__slide {
    width: calc(100vw - 20px);
}
@media screen and (min-width: 768px) {
    .figures-block__slide {
        width: calc(100vw - 40px);
    }
}
@media screen and (min-width: 1024px) {
    .figures-block__slide {
        width: 25vw;
    }
}
.figures-block .slide__content {
    flex-grow: 1;
}
.figures-block .slide__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: calc(100vw - 20px);
}
@media screen and (min-width: 768px) {
    .figures-block .slide__inner {
        width: calc(100vw - 40px);
    }
}
.figures-block .slide__inner .btn {
    align-items: flex-end;
}
.figures-block .slide__inner .btn__lines {
    top: auto;
}
@media screen and (min-width: 1024px) {
    .figures-block .slide__inner {
        width: 25vw;
    }
}
.figures-block__info {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-basis: 50%;
    max-width: 100%;
}
.figures-block__info .info1 {
    margin-right: 20px;
}
@media screen and (min-width: 768px) {
    .figures-block__info {
        margin-bottom: 10px;
    }
}
.figures-block .btn__wording {
    max-width: 100%;
}
.figures-slider__controls {
    display: flex;
    justify-content: center;
    position: absolute;
    top: -68px;
    right: 0;
    width: 25vw;
}
@media screen and (min-width: 1024px) {
    .figures-slider__controls {
        width: 12.5vw;
    }
}
.figures-slider__arrow {
    margin: 0;
    cursor: pointer;
}
.figures-slider__arrow--left {
    margin-right: 15px;
}
.figures-slider__arrow--right {
    margin-left: 15px;
}
@media screen and (min-width: 1024px) {
    .missions-block__container {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
    }
}
.missions-block__container .title--paragraph {
    font-size: 1.111111111111111rem;
}
.missions-block__content {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.missions-block__content-wrapper {
    margin-bottom: 50px;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .missions-block__content-wrapper {
        display: flex;
        flex: 0 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        width: 100%;
    }
}
@media screen and (min-width: 1024px) {
    .missions-block__content-wrapper {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
}
.missions-block__icon {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .missions-block__icon {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
}
.missions-block__icon svg {
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 1024px) {
    .missions-block__icon svg {
        margin-left: 50%;
        transform: translateX(-50%);
    }
}
@media screen and (min-width: 1024px) {
    .missions-block__wrapper {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        margin-bottom: 100px;
    }
}
.missions-block__wrapper .title {
    font-size: 2.222222222222222rem;
}
.missions-block__wrapper--red {
    background-color: #f00;
    color: #fff;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .missions-block__wrapper--red {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        margin-left: 33.33%;
    }
    .missions-block__wrapper--red .btn {
        display: flex;
    }
    .missions-block__wrapper--red .btn__lines {
        top: 9px;
    }
}
.missions-block__wrapper--red .title {
    color: #fff;
    font-size: 1.666666666666667rem;
}
.missions-block__wrapper--red .btn {
    color: #fff;
}
.missions-block__wrapper--red .btn__line {
    background: #fff;
}
.missions-block__wrapper--red .btn:hover .btn__wording {
    color: #fff;
}
.missions-block__inner-box {
    padding: 50px;
}
.missions-block__inner-box .title {
    margin-bottom: 50px;
}
.missions-block .btn__wording {
    max-width: 100%;
    margin-bottom: 5px;
}
.missions-block .title--paragraph {
    margin-bottom: 50px;
}
.missions-block .paragraph {
    display: block;
}
.news-block {
    margin-top: 20px;
}
@media screen and (min-width: 768px) {
    .news-block {
        margin-top: 60px;
    }
}
@media screen and (min-width: 1280px) {
    .news-block {
        margin-top: 0;
    }
}
.news-block__container {
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .news-block__container {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
        margin-bottom: 100px;
    }
}
.news-block__content {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
    .news-block__content {
        margin-bottom: 60px;
    }
}
@media screen and (min-width: 1024px) {
    .news-block__content {
        flex-direction: row;
    }
}
.news-block__wrapper {
    margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
    .news-block__wrapper {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-bottom: 0;
    }
}
.news-block .bkg-text {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
    margin-left: 12.5%;
    font-size: 5.555555555555555rem;
    text-align: right;
    display: none;
    color: #404040;
}
@media screen and (min-width: 1280px) {
    .news-block .bkg-text {
        display: block;
    }
}
.news-block .title,
.news-block .paragraph {
    display: block;
}
@media screen and (min-width: 1024px) {
    .news-block .title,
    .news-block .paragraph {
        max-width: 80%;
    }
}
.news-block .link-wrapper .btn {
    width: 100%;
}
.news-block .link-wrapper .btn strong.btn__wording {
    margin-bottom: 5px;
}
.news-block__link .btn {
    color: #aaa;
}
.news-block__link strong.btn__wording {
    margin-bottom: 5px;
}
.news-block__link span.btn__line {
    background: #aaa;
    margin-bottom: -5px;
}
.home-intro {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}
@media screen and (min-width: 1024px) {
    .home-intro {
        min-height: calc(100vh - 119px);
    }
}
@media screen and (max-width: 767px) {
    .home-intro {
        background-position: center right 20%;
    }
}
.home-intro:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        -90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 20%,
        #fff 100%
    );
    z-index: -1;
}
@media screen and (min-width: 1024px) {
    .home-intro:after {
        background-image: linear-gradient(
            -90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 20%,
            #fff 100%
        );
    }
}
.home-intro__txt {
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .home-intro__txt {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
    }
}
@media screen and (min-width: 768px) {
    .home-intro__txt {
        margin-bottom: 50px;
    }
}
.home-intro__content {
    position: relative;
    z-index: 5;
    padding-top: 40px;
    padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .home-intro__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        padding-top: 65px;
        padding-bottom: 75px;
    }
}
@media screen and (min-width: 1024px) {
    .home-intro__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 12.5%;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media screen and (min-width: 1280px) {
    .home-intro__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 37.5%;
        flex-preferred-size: 37.5%;
        max-width: 37.5%;
        padding-top: 150px;
    }
}
.home-intro .btn:last-child {
    margin-top: 30px;
}
@media screen and (min-width: 1024px) {
    .home-intro .description {
        width: 75%;
    }
}
@media screen and (min-width: 1280px) {
    .home-intro .description {
        width: 100%;
    }
}
.home-intro .bkg-grid {
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}
.container-block {
    position: relative;
    overflow: hidden;
    background: no-repeat #fff;
    background-size: 100% auto;
}
.content-header {
    padding-bottom: 50px;
}
.content-header .bkg-grid__stripe {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.content-header .bkg-grid__stripe:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 1024px) {
    .content-header {
        padding-bottom: 150px;
    }
}
.content-header .breadcrumb,
.content-header__content > div {
    position: relative;
    z-index: 1;
}
.content-header__content {
    position: relative;
    overflow: hidden;
    padding-bottom: 110px;
    background-size: cover;
}
.content-header__content:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.content-header__content .page-title {
    padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
    .content-header__content .page-title {
        padding-bottom: 55px;
    }
}
@media screen and (min-width: 768px) {
    .content-header__content {
        padding-bottom: 180px;
    }
}
.content-header__content-wrap {
    padding-top: 30px;
}
@media screen and (min-width: 1024px) {
    .content-header__content-wrap {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 25%;
        padding-top: 50px;
    }
}
@media screen and (min-width: 768px) {
    .content-header__content-wrap {
        padding-top: 40px;
    }
}
.content-header__paragraph {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 0.833333333333333rem;
    color: #fff;
    opacity: 0.6;
    max-width: 100%;
    line-height: 20px;
}
@media screen and (min-width: 768px) {
    .content-header__paragraph {
        font-size: 1.333333333333333rem;
        line-height: 36px;
    }
}
.content-header__video {
    position: relative;
    z-index: 10;
    margin: -100px 0 50px;
}
@media screen and (min-width: 1024px) {
    .content-header__video {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
    }
}
.content-header__video-thumb {
    position: relative;
    font-size: 0px;
}
.content-header__video-thumb:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 87%;
    background: linear-gradient(0, #333745 0, rgba(51, 55, 69, 0) 100%);
    opacity: 0.6;
}
@media screen and (max-width: 1023px) {
    .content-header__video-thumb:after {
        display: none;
    }
}
.content-header__video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 10px;
}
@media screen and (min-width: 1024px) {
    .content-header__video-icon {
        width: 14px;
        height: 20px;
    }
}
.content-header__text {
    margin-top: 10px;
}
@media screen and (min-width: 1024px) {
    .content-header__text {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 25%;
        margin-top: 100px;
    }
}
.content-header__text .title {
    color: #f00;
    font-family: 'Inter', sans-serif;
}
.content-header__text .title--level-2 {
    font-size: 1.444444444444444rem;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
    .content-header__text .title--level-2 {
        font-size: 5rem;
        font-weight: 700;
        line-height: 90px;
        margin-bottom: 50px;
    }
}
.content-header__text .title--paragraph {
    font-size: 1.111111111111111rem;
    font-weight: 700;
    line-height: 24px;
}
@media screen and (min-width: 1024px) {
    .content-header__text .title--paragraph {
        font-size: 1.333333333333333rem;
        line-height: 30px;
    }
}
.content-header__text .paragraph {
    margin-top: 20px;
}
.content-header__title--small {
    font-size: 26px;
}
@media screen and (min-width: 1024px) {
    .content-header__title--small {
        margin-top: 50px;
    }
}
#content-header__video-source {
    position: relative;
    display: none;
    min-width: 100%;
    max-width: 100%;
    height: auto;
}
#content-header__video-poster {
    position: relative;
    min-width: 100%;
    max-width: 100%;
    height: auto;
}
#content-header__video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    transform: translateX(-50%) translateY(-50%);
    background-color: #f00;
    cursor: pointer;
}
@media screen and (min-width: 1024px) {
    #content-header__video-btn {
        display: none;
        width: 100px;
        height: 100px;
    }
}
#content-header__video-text {
    margin-top: 20px;
    cursor: pointer;
}
@media screen and (max-width: 1023px) {
    #content-header__video-text p {
        color: #333745;
    }
}
@media screen and (min-width: 1024px) {
    #content-header__video-text {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: 0;
        max-width: calc(1 / 3 * 100%);
        transform: translateY(-50%);
    }
    #content-header__video-text:before {
        content: '';
        position: absolute;
        top: 0;
        left: -50px;
        width: 100px;
        height: 100px;
        background: #f00 url('/static/images/containers/content/play.svg')
            no-repeat center;
        transform: translateX(-100%);
    }
}
#content-header__video-text .title {
    margin-bottom: 20px;
    color: #333745;
}
@media screen and (min-width: 1024px) {
    #content-header__video-text .title {
        color: #fff;
    }
}
#content-header__video-text .title--level-3 {
    font-size: 2rem;
    color: #f00;
}
@media screen and (min-width: 1024px) {
    #content-header__video-text .title--level-3 {
        color: #fff;
    }
}
#content-header__video-text .title--paragraph-2 {
    opacity: 0.6;
    font-size: 0.833333333333333rem;
    line-height: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}
@media screen and (min-width: 1024px) {
    #content-header__video-text .title--paragraph-2 {
        font-size: 1.333333333333333rem;
    }
}
.content-missions-block {
    counter-reset: mission-counter;
}
@media screen and (min-width: 1024px) {
    .content-missions-block {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
    }
}
.content-missions-block:nth-last-child(2) {
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .content-missions-block:nth-last-child(2) {
        margin-bottom: 150px;
    }
}
.content-missions-block .headline {
    margin-bottom: 55px;
}
@media screen and (min-width: 1024px) {
    .content-missions-block .headline {
        margin-bottom: 80px;
    }
}
.content-missions-block__container .news-item {
    align-items: center;
    justify-content: center;
}
.content-missions-block__item {
    counter-increment: mission-counter;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.content-missions-block__item:not(:last-child) {
    margin-bottom: 80px;
}
.content-missions-block__item:hover .btn__wording {
    color: #f00;
}
@media screen and (min-width: 768px) {
    .content-missions-block__item:not(:last-child) {
        margin-bottom: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .content-missions-block__item {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .content-missions-block__item:not(:last-child) {
        margin-bottom: 90px;
    }
}
.content-missions-block__title {
    position: relative;
    z-index: 1;
    margin-bottom: 55px;
    padding-right: 40px;
    padding-left: 40px;
    text-align: center;
    white-space: nowrap;
    color: #f00;
    font-size: 1.444444444444444rem;
    line-height: 30px;
    font-weight: 600;
}
@media screen and (min-width: 1024px) {
    .content-missions-block__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-bottom: 0;
        font-size: 2rem;
        line-height: 43px;
    }
}
.content-missions-block__title:before {
    content: counter(mission-counter);
    position: absolute;
    top: -10px;
    left: 50%;
    z-index: -1;
    font-weight: 700;
    font-size: 7.222222222222222rem;
    transform: translateX(-50%);
    opacity: 0.05;
    color: #333745;
}
.content-missions-block__title:before--4 {
    top: 5px;
}
@media screen and (min-width: 768px) {
    .content-missions-block__title:before {
        font-size: 11.11111111111111rem;
    }
    .content-missions-block__title:before--4 {
        top: 0;
    }
}
@media screen and (min-width: 1024px) {
    .content-missions-block__title:before {
        top: -15px;
    }
}
.content-missions-block__paragraph {
    margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
    .content-missions-block__paragraph {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
    }
}
@media screen and (min-width: 1280px) {
    .content-missions-block__paragraph {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        padding-right: 15px;
    }
}
.content-missions-block__link {
    margin-top: 0;
    width: 100%;
    text-align: right;
}
@media screen and (min-width: 1280px) {
    .content-missions-block__link {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 16.666666666666664%;
        flex-preferred-size: 16.666666666666664%;
        max-width: 16.666666666666664%;
    }
}
.content-missions-block__link .btn__wording {
    max-width: 100%;
}
.content-figures-block {
    padding-bottom: 80px;
}
@media screen and (min-width: 1024px) {
    .content-figures-block {
        padding-bottom: 150px;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
    }
}
.content-figures-block .headline {
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .content-figures-block .headline {
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 1023px) {
    .content-figures-block__content {
        position: relative;
        min-height: 115px;
    }
}
@media screen and (max-width: 1023px) {
    .content-figures-block__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        overflow: hidden;
    }
}
@media screen and (min-width: 1024px) {
    .content-figures-block__inner {
        width: 100%;
    }
}
.content-figures-block__slides {
    list-style-type: none;
    position: relative;
    display: flex;
    margin: 0;
    padding: 0;
    transition: transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
    .content-figures-block__slides {
        flex-wrap: wrap;
    }
}
.content-figures-block__slide {
    padding-right: 20px;
    width: calc((75vw / 2) - 7px);
}
@media screen and (min-width: 768px) {
    .content-figures-block__slide {
        width: calc((75vw / 2) - 15px);
    }
}
@media screen and (min-width: 1024px) {
    .content-figures-block__slide {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        position: relative;
        top: 0;
        left: 0;
        width: auto;
    }
}
.content-figures-block__number {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 1.851851851851852rem;
    font-family: 'Playfair Display', serif;
    color: #f00;
}
@media screen and (min-width: 1024px) {
    .content-figures-block__number {
        margin-bottom: 0;
        font-size: 4.444444444444445rem;
        line-height: 100px;
    }
}
@media screen and (min-width: 1280px) {
    .content-figures-block__number {
        font-size: 5.555555555555555rem;
        line-height: 121px;
    }
}
.content-figures-block__text {
    line-height: 1.3;
    color: #f00;
}
.content-figures-slider__controls {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 25%;
}
@media screen and (min-width: 1024px) {
    .content-figures-slider__controls {
        display: none;
    }
}
.container-block:not(:nth-last-child(2)):not(:nth-last-child(4))
    .content-figures-block:last-child {
    padding-bottom: 0;
}
.info-block {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
    background-color: #fff;
}
@media screen and (min-width: 1024px) {
    .info-block {
        padding-bottom: 150px;
    }
}
@media screen and (min-width: 768px) {
    .info-block h2 {
        margin-bottom: 50px;
    }
}
.info-block__container {
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.info-block__container .info-block__text:last-child {
    margin-bottom: 50px;
}
.info-block__container:last-child .info-block__img {
    margin-bottom: 0;
}
.info-block__text {
    position: relative;
}
@media screen and (min-width: 1024px) {
    .info-block__text {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 25%;
    }
}
.info-block__text .headline {
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .info-block__text .headline {
        margin-bottom: 50px;
    }
}
.info-block__text h2 {
    font-size: 1.444444444444444rem;
    line-height: 30px;
    margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
    .info-block__text h2 {
        font-size: 2.666666666666667rem;
        line-height: 48px;
        margin-bottom: 30px;
    }
}
.info-block__text .title--paragraph {
    color: #f00;
    font-size: 1.111111111111111rem;
    font-weight: 700;
    line-height: 24px;
}
@media screen and (min-width: 1024px) {
    .info-block__text .title--paragraph {
        font-size: 1.333333333333333rem;
        line-height: 30px;
    }
}
.info-block__text .paragraph ul li:before {
    top: 15px;
}
.info-block__img {
    position: relative;
    z-index: 10;
    margin-bottom: 25px;
}
.info-block__img:not(:first-child) {
    margin-top: 30px;
}
@media screen and (min-width: 1024px) {
    .info-block__img {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
        margin-bottom: 95px;
    }
    .info-block__img:not(:first-child) {
        margin-top: 95px;
    }
}
.info-block__img img {
    width: 100%;
}
.mosaic-block {
    padding-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .mosaic-block {
        padding-bottom: 150px;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
    }
}
.mosaic-block__container {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
    .mosaic-block__container:nth-child(even) .mosaic-block__text {
        order: 1;
    }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
    .mosaic-block__container:nth-child(even) .mosaic-block__content {
        padding-right: 0;
        padding-left: 25px;
    }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
    .mosaic-block__container:nth-child(even) .mosaic-block__content {
        margin-left: 33%;
        padding-left: 0;
    }
}
.mosaic-block__container:not(:last-child) {
    margin-bottom: 45px;
}
@media screen and (min-width: 1024px) {
    .mosaic-block__container:not(:last-child) {
        margin-bottom: 140px;
    }
}
.mosaic-block__text {
    margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
    .mosaic-block__text {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 1024px) {
    .mosaic-block__content {
        padding-right: 25px;
    }
}
@media screen and (min-width: 1280px) {
    .mosaic-block__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        padding-right: 0;
    }
}
.mosaic-block__content .headline {
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .mosaic-block__content .headline {
        margin-bottom: 50px;
    }
}
.mosaic-block__content h2 {
    font-size: 1.444444444444444rem;
    line-height: 30px;
    margin-bottom: 25px;
}
@media screen and (min-width: 1024px) {
    .mosaic-block__content h2 {
        font-size: 2.666666666666667rem;
        line-height: 48px;
        margin-bottom: 30px;
    }
}
.mosaic-block__img {
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .mosaic-block__img {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
}
.mosaic-block__img img {
    width: 100%;
    height: auto;
}
.quote-block {
    padding: 0 55px 80px;
}
@media screen and (min-width: 768px) {
    .quote-block {
        padding-right: 65px;
        padding-left: 65px;
    }
}
@media screen and (min-width: 1024px) {
    .quote-block {
        padding: 0 0 150px;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 25%;
    }
}
.quote-block .quote {
    padding-top: 0;
    padding-bottom: 20px;
}
.container-block:not(:nth-last-child(2)):not(:nth-last-child(4))
    .quote-block:last-child {
    padding-bottom: 0;
}
.story-block {
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .story-block {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
        margin-bottom: 200px;
    }
}
.story-block__content {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    flex-direction: column;
}
@media screen and (min-width: 1024px) {
    .story-block__content {
        flex-direction: row;
    }
}
.story-block__block {
    background-color: #dedede;
    margin-bottom: 20px;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    flex-direction: column;
}
@media screen and (min-width: 1024px) {
    .story-block__block {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-bottom: 0;
        flex-direction: row;
    }
    .story-block__block:not(:last-child) {
        border-right: 1px solid #fff;
    }
}
.story-block__img {
    overflow: hidden;
}
.story-block__img img {
    width: 100%;
    height: auto;
}
.story-block__wrapper {
    padding: 8px 10px 20px 10px;
}
@media screen and (min-width: 1024px) {
    .story-block__wrapper {
        padding: 18px 10px 60px 10px;
    }
}
.story-block__wrapper .date {
    color: #777;
    font-size: 0.833333333333333rem;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 15px;
}
.story-block__wrapper .paragraph {
    font-family: 'Inter', sans-serif;
    font-size: 1.444444444444444rem;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 40px;
    margin-top: 20px;
}
@media screen and (min-width: 1024px) {
    .story-block__wrapper .paragraph {
        font-size: 1.666666666666667rem;
        line-height: 36px;
        margin-bottom: 75px;
    }
}
.text-block {
    position: relative;
    margin: 0 10px 50px;
    background-color: rgba(111, 111, 111, 0.08);
}
@media screen and (min-width: 768px) {
    .text-block {
        margin-right: 20px;
        margin-left: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .text-block {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
        margin-bottom: 150px;
    }
}
.text-block__container {
    padding: 30px 0;
}
@media screen and (min-width: 1024px) {
    .text-block__container {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        margin-left: 16.5%;
        padding: 100px 0;
    }
}
@media screen and (min-width: 1280px) {
    .text-block__container .paragraph {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
    }
}
.text-block__container .title {
    color: #f00;
    font-size: 1.444444444444444rem;
    line-height: 30px;
}
@media screen and (min-width: 1024px) {
    .text-block__container .title {
        font-size: 2.666666666666667rem;
        line-height: 48px;
    }
}
.text-block__wrapper {
    padding-right: 20px;
    padding-left: 20px;
}
@media screen and (min-width: 1024px) {
    .text-block__wrapper {
        padding-right: 0;
        padding-left: 0;
    }
}
.text-block .link-wrapper {
    margin-top: 50px;
}
.text-block .btn__wording {
    max-width: 100%;
}
.work-block__slides {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: auto !important;
}
.work-block {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    z-index: 6;
    margin-top: 50px;
    padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .work-block .link-wrapper--right {
        transform: translateX(33.33%);
    }
}
@media screen and (min-width: 768px) {
    .work-block {
        margin-top: 100px;
        padding-bottom: 140px;
    }
}
@media screen and (min-width: 1024px) {
    .work-block {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.5%;
        margin-top: 150px;
    }
}
.co-header + .work-block,
.info-block + .work-block,
.mosaic-block + .work-block,
.page-intro-scroll + .work-block {
    margin-top: 0;
}
.work-block h2.headline {
    display: block;
}
@media screen and (min-width: 1024px) {
    .work-block h2.headline {
        display: none;
    }
}
.work-block__slide {
    float: left;
    width: 100%;
    height: auto !important;
}
.work-block__inner {
    overflow: hidden;
    width: 100%;
    height: auto !important;
}
.work-block__inner h3 {
    display: none;
}
@media screen and (min-width: 1024px) {
    .work-block__inner h3 {
        display: block;
    }
}
.work-block .slide__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.work-block .slide__content {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
    order: 1;
}
@media screen and (min-width: 1024px) {
    .work-block .slide__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        order: 0;
    }
}
@media screen and (min-width: 1280px) {
    .work-block .slide__content {
        padding-top: 2vw;
    }
    .work-block .slide__content--content {
        padding-top: 0;
    }
}
@media screen and (min-width: 1600px) {
    .work-block .slide__content {
        padding-top: 8vw;
    }
    .work-block .slide__content--content {
        padding-top: 0;
    }
}
.work-block .slide__content__inner .title {
    margin-bottom: 20px;
    font-size: 1.444444444444444rem;
    line-height: 30px;
}
@media screen and (min-width: 1024px) {
    .work-block .slide__content__inner .title {
        margin-bottom: 70px;
        font-size: 2.666666666666667rem;
        line-height: 48px;
    }
}
.work-block .slide__image {
    margin-bottom: 15px;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .work-block .slide__image {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-left: 16.6%;
        margin-bottom: 0;
    }
}
.work-block .bkg-text {
    display: none;
}
@media screen and (min-width: 1024px) {
    .work-block .bkg-text {
        top: 27vw;
        right: -17%;
        z-index: 2;
        display: block;
    }
}
@media screen and (min-width: 1280px) {
    .work-block .bkg-text {
        top: 30vw;
    }
}
@media screen and (min-width: 1600px) {
    .work-block .bkg-text {
        top: 29vw;
    }
}
.work-block__content {
    width: 100%;
}
.work-block__content .btn {
    margin-top: 30px;
}
@media screen and (min-width: 768px) {
    .work-block__content .btn {
        margin-top: 80px;
    }
}
.work-block__controls {
    position: absolute;
    top: calc(75px + 100vw);
    right: 10px;
    z-index: 10;
    width: calc(25% - 5px);
}
@media screen and (min-width: 768px) {
    .work-block__controls {
        right: 20px;
        width: calc(25% - 10px);
    }
}
@media screen and (min-width: 1024px) {
    .work-block__controls {
        top: 6vw;
        left: 50%;
        width: 16.6%;
    }
}
.work-block__controls--content-page {
    top: calc(75px + 48vw);
}
@media screen and (min-width: 1024px) {
    .work-block__controls--content-page {
        top: calc(75px + 4vw);
    }
}
@media screen and (min-width: 1600px) {
    .work-block__controls--content-page {
        top: calc(75px + 9vw);
    }
}
@media screen and (min-width: 1024px) {
    .work-block__controls .controls__arrow {
        display: inline-block;
    }
}
.work-block__controls .controls__arrow--left {
    margin-right: 50px;
}
.work-block__arrow {
    display: block;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    cursor: pointer;
}
.work-block__arrow circle {
    stroke: #f00;
}
.work-block__arrow:first-child {
    margin-bottom: 15px;
}
.work-block__arrow:hover circle {
    fill: #fff;
}
.work-block__arrow:hover path {
    fill: #f00;
}
.work-block__arrow:hover .arrow-path--first {
    animation: arrow 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.work-block__arrow:hover .arrow-path--second {
    animation: arrow__second 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.work-block__arrow circle,
.work-block__arrow path {
    transition: 0.3s fill cubic-bezier(0.125, 0.75, 0.415, 1);
    transform: translate(1px, 1px);
}
.work-block__arrow .arrow-path--second {
    transform: translateX(50px);
}
.work-block__arrow--right .arrow-path--second {
    transform: translateX(-50px);
}
.work-block__arrow--right:hover .arrow-path--first {
    animation: arrow__reverse 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.work-block__arrow--right:hover .arrow-path--second {
    animation: arrow__reverse_second 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.news-filters {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 9999;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #eee;
}
@media screen and (min-width: 1024px) {
    .news-filters {
        z-index: 2;
        position: relative;
        bottom: auto;
        left: auto;
        margin-bottom: 20px;
        background: none;
    }
}
.news-filters__inner {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 100%;
}
@media screen and (min-width: 1024px) {
    .news-filters__inner {
        min-width: 25%;
        margin-left: 25%;
        width: 50%;
    }
}
@media screen and (min-width: 1280px) {
    .news-filters__inner {
        width: 25%;
    }
}
.news-filters__list {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    position: relative;
}
.news-filters__list + .news-filters__list .news-filters__title {
    border-left: 1px solid #fff;
}
@media screen and (min-width: 1024px) {
    .news-filters__list + .news-filters__list .news-filters__title {
        border: none;
    }
}
.news-filters__arrow {
    display: none;
    width: 13px;
    height: 8px;
    position: relative;
    margin-right: 10px;
    margin-left: 10px;
    align-self: center;
    justify-self: flex-end;
}
@media screen and (min-width: 1024px) {
    .news-filters__arrow {
        display: inline-block;
    }
}
.news-filters__arrow::before,
.news-filters__arrow::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiMwMDAiPjwvcGF0aD48L3N2Zz4=');
}
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) or
    (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) {
    .news-filters__arrow::after {
        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiNGMDAiPjwvcGF0aD48L3N2Zz4=');
        transition: all 0.4s ease;
    }
}
.news-filters__options-wrapper {
    z-index: 9999;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100vw;
    display: none;
    opacity: 0;
    transition: 0.4s opacity;
    background: #fff;
}
@media screen and (min-width: 1024px) {
    .news-filters__options-wrapper {
        z-index: 1;
        width: 100%;
        height: auto;
        position: relative;
        bottom: 0;
        left: auto;
        overflow: visible;
        background: none;
    }
}
.news-filters__options-wrapper.active {
    display: block;
    opacity: 1;
}
.news-filters__options {
    width: 100vw;
    text-align: left;
    line-height: 0;
}
@media screen and (min-width: 1024px) {
    .news-filters__options {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: auto;
    }
}
.news-filters__options-inner {
    background: #fff;
}
@media screen and (min-width: 1024px) {
    .news-filters__options-inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.news-filters__option {
    width: 100%;
    padding: 15px 15px;
    font-size: 0.722222222222222rem;
    letter-spacing: 0.111111111111111rem;
    color: #aaa;
    text-align: center;
    line-height: 1.6;
    background: none;
    border-bottom: none;
    border-color: #eee;
    border-size: 1px;
    cursor: pointer;
    transition: 0.4s color;
    outline: none;
}
@media screen and (min-width: 1024px) {
    .news-filters__option {
        text-align: left;
        padding: 0 15px;
        border: none;
    }
    .news-filters__option:hover {
        color: #f00;
    }
}
.news-filters__option.active {
    color: #f00;
}
.news-filters__title {
    display: flex;
    position: relative;
    background: none;
    border: none;
    margin: 0;
    cursor: pointer;
    width: 100%;
    text-align: center;
    outline: none;
    justify-content: center;
    height: 64px;
    padding-left: 0;
    align-items: center;
}
@media screen and (min-width: 1024px) {
    .news-filters__title {
        text-align: left;
        justify-content: flex-start;
        width: 100%;
    }
    @supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) or
        (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) {
        .news-filters__title {
            width: initial;
        }
    }
    .news-filters__title::before {
        content: '';
        display: inline-block;
        width: 50%;
        height: 0.111111111111111rem;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #f00;
        transform-origin: center left;
        transform: scaleX(0);
        transition: 0.4s transform;
    }
    @supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) or
        (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) {
        .news-filters__title::before {
            width: 100%;
        }
    }
}
.news-filters__title .headline {
    width: 56%;
    margin-bottom: 0;
    font-size: 0.583333333333333rem;
    letter-spacing: 0.111111111111111rem;
    color: #777;
    transition: 0.4s color;
    line-height: 17px;
}
@media screen and (min-width: 768px) {
    .news-filters__title .headline {
        width: 100%;
        line-height: 24px;
    }
}
@media screen and (min-width: 1024px) {
    .news-filters__title .headline {
        width: auto;
        font-size: 0.833333333333333rem;
        letter-spacing: 0;
        text-transform: none;
        color: #333745;
    }
    .news-filters__title .headline::before,
    .news-filters__title .headline::after {
        content: '';
        display: inline-block;
        width: 0.555555555555556rem;
        height: 0.111111111111111rem;
        margin-right: 0.555555555555556rem;
        background-color: #333745;
    }
    .news-filters__title .headline::after {
        z-index: 2;
        position: absolute;
        bottom: 26px;
        left: 0;
        background-color: #f00;
        transform-origin: center left;
        transform: scaleX(0);
        transition: 0.4s transform;
    }
}
.news-filters__title.active::before {
    transform: scaleX(1);
}
.news-filters__title.active .headline {
    color: #f00;
}
.news-filters__title.active .headline::after {
    transform: scaleX(1);
}
.news-filters__title.active .news-filters__arrow::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiNGMDAiPjwvcGF0aD48L3N2Zz4=');
}
@supports (-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)) or
    (clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)) {
    .news-filters__title.active .news-filters__arrow::after {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}
@media screen and (min-width: 1024px) {
    .news-filters__title:hover::before {
        transform: scaleX(1);
    }
    .news-filters__title:hover .headline {
        color: #f00;
    }
    .news-filters__title:hover .headline::after {
        transform: scaleX(1);
    }
    .news-filters__title:hover .news-filters__arrow::after {
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiNGMDAiPjwvcGF0aD48L3N2Zz4=');
    }
    @supports (-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%))
        or (clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)) {
        .news-filters__title:hover .news-filters__arrow::after {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
    }
}
.filters-tags {
    margin-bottom: 50px;
    display: none;
}
@media screen and (min-width: 1024px) {
    .filters-tags {
        display: block;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-left: 25%;
    }
}
.filters-tags__item {
    display: inline-block;
    margin-right: 50px;
    line-height: 18px;
    color: #f00;
    font-family: 'Inter', sans-serif;
    font-size: 0.833333333333333rem;
    font-weight: 600;
}
.filters-tags__item--remove {
    margin-left: 10px;
    font-weight: 700;
    cursor: pointer;
}
.news-item {
    position: relative;
    margin-top: 0;
    margin-bottom: 50px;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    text-decoration: none;
}
.news-item:hover .btn__wording {
    color: #f00;
}
.news-item:visited {
    color: #333745;
}
@media screen and (min-width: 768px) {
    .news-item {
        margin-top: 0;
        margin-bottom: 0;
        align-items: center;
        text-align: 'middle';
    }
}
.news-item__image {
    margin-top: 0;
    margin-bottom: 30px;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 768px) {
    .news-item__image {
        margin-top: 0;
        margin-bottom: 0;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
    }
}
@media screen and (min-width: 1024px) {
    .news-item__image {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 20%;
        flex-preferred-size: 20%;
        max-width: 20%;
    }
}
.news-item__date {
    margin-top: 0;
    margin-bottom: 10px;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 768px) {
    .news-item__date {
        margin-top: 0;
        margin-bottom: 0;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        text-align: center;
    }
}
@media screen and (min-width: 1024px) {
    .news-item__date {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 20%;
        flex-preferred-size: 20%;
        max-width: 20%;
    }
}
.news-item__title {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    font-size: 1.666666666666667rem;
    line-height: 36px;
}
@media screen and (min-width: 768px) {
    .news-item__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
}
@media screen and (min-width: 1024px) {
    .news-item__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 40%;
        flex-preferred-size: 40%;
        max-width: 40%;
    }
}
.news-item__btn {
    display: none;
}
@media screen and (min-width: 1024px) {
    .news-item__btn {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 20%;
        flex-preferred-size: 20%;
        max-width: 20%;
        display: block;
        text-align: right;
    }
}
.intro-block {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
    .intro-block {
        margin-top: 120px;
        margin-bottom: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .intro-block {
        position: sticky;
        top: 0;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 37.5%;
        flex-preferred-size: 37.5%;
        max-width: 37.5%;
        margin-left: 12.5%;
        margin-top: 0;
        margin-bottom: 0;
        height: 100vh;
    }
}
.intro-block__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    text-align: 'middle';
    height: 100%;
}
.intro-block__content {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .intro-block__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
    }
}
.intro-block .scroll-indicator {
    display: none;
}
@media screen and (min-width: 1024px) {
    .intro-block .scroll-indicator {
        display: block;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
}
.intro-block__back {
    display: block;
    margin-bottom: 50px;
    text-decoration: none;
}
@media screen and (min-width: 768px) {
    .intro-block__back {
        margin-bottom: 80px;
    }
}
@media screen and (min-width: 1024px) {
    .intro-block__back {
        margin-bottom: 50px;
    }
}
@media screen and (min-width: 1280px) {
    .intro-block__back {
        margin-bottom: 80px;
    }
}
.intro-block__arrow {
    margin-right: 20px;
    fill: #aaa;
    transform: rotate(90deg);
}
.intro-block .date {
    display: block;
    margin-bottom: 20px;
    margin-top: 40px;
}
.intro-block .share-block__icon {
    display: inline-block;
    margin-left: 20px;
}
.content-video {
    position: relative;
}
.content-video__infos {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    overflow: hidden;
    padding: 30px;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 768px) {
    .content-video__infos {
        padding: 100px 50px 50px;
    }
}
.content-video__infos .btn__icon {
    vertical-align: middle;
}
.content-video__poster {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: auto;
}
.content-video__title {
    display: block;
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    font-weight: 600;
}
.content-video__btn {
    position: relative;
    z-index: 2;
}
.content-video__video {
    width: 100%;
}
.content-link-list__wrapper {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.content-link-list__item {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.content-link-list__item .item__content {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 768px) {
    .content-link-list__item .item__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
    }
}
@media screen and (min-width: 1024px) {
    .content-link-list__item .item__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
    }
}
@media screen and (min-width: 1280px) {
    .content-link-list__item .item__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
    }
}
.content-link-list__item .item__cta {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 768px) {
    .content-link-list__item .item__cta {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
    }
}
@media screen and (min-width: 1024px) {
    .content-link-list__item .item__cta {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        flex-preferred-size: 100%;
        max-width: 100%;
    }
}
@media screen and (min-width: 1280px) {
    .content-link-list__item .item__cta {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
}
.content-key-figures ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.content-key-figures li {
    padding-bottom: 10px;
    border-left: 2px solid #f00;
    padding-right: 10px;
}
.content-key-figures__item {
    margin: 30px 0;
}
.content-key-figures__item dl {
    margin: 0;
    padding-left: 30px;
}
.content-key-figures__item dl dt {
    color: #333745;
    font-size: 3em;
    margin-bottom: 4px;
}
.content-key-figures__item dl dd {
    margin: 0;
    line-height: 1.125;
    font-size: 1.666666666666667rem;
    font-family: 'Playfair Display', serif;
}
@media screen and (min-width: 1024px) {
    .content-key-figures li {
        padding-right: 0;
    }
    .content-key-figures__item dl {
        display: flex;
        align-items: center;
        padding-left: 48px;
    }
    .content-key-figures__item dl dt {
        margin-right: 30px;
        font-size: 3.888888888888889rem;
    }
    .content-key-figures__item dl dd {
        max-width: 250px;
    }
}
.work-filters {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 9999;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #eee;
}
@media screen and (min-width: 1024px) {
    .work-filters {
        z-index: 10;
        position: relative;
        bottom: auto;
        left: auto;
        margin-bottom: 20px;
        background: none;
    }
}
.work-filters__inner {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 100%;
}
@media screen and (min-width: 1024px) {
    .work-filters__inner {
        min-width: 25%;
        margin-left: 25%;
        width: 50%;
    }
}
@media screen and (min-width: 1279px) and (max-width: 1400px) {
    .work-filters__inner {
        min-width: 25% !important;
        margin-left: 25% !important;
        width: 50% !important;
    }
}
@media screen and (min-width: 1280px) {
    .work-filters__inner {
        width: 25%;
    }
}
.work-filters__list {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 50%;
    flex-preferred-size: 50%;
    max-width: 50%;
    position: relative;
}
.work-filters__list + .work-filters__list .work-filters__title {
    border-left: 1px solid #fff;
}
@media screen and (min-width: 1024px) {
    .work-filters__list + .work-filters__list .work-filters__title {
        border: none;
    }
}
.work-filters__arrow {
    display: none;
    width: 13px;
    height: 8px;
    position: relative;
    margin-right: 10px;
    margin-left: 10px;
    align-self: center;
    justify-self: flex-end;
}
@media screen and (min-width: 1024px) {
    .work-filters__arrow {
        display: inline-block;
    }
}
.work-filters__arrow::before,
.work-filters__arrow::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiMwMDAiPjwvcGF0aD48L3N2Zz4=');
}
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) or
    (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) {
    .work-filters__arrow::after {
        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiNGMDAiPjwvcGF0aD48L3N2Zz4=');
        transition: all 0.4s ease;
    }
}
.work-filters__options-wrapper {
    z-index: 9999;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100vw;
    display: none;
    opacity: 0;
    transition: 0.4s opacity;
    background: #fff;
}
@media screen and (min-width: 1024px) {
    .work-filters__options-wrapper {
        z-index: 1;
        width: 100%;
        height: auto;
        position: relative;
        bottom: 0;
        left: auto;
        overflow: visible;
        background: none;
    }
}
.work-filters__options-wrapper.active {
    display: block;
    opacity: 1;
}
.work-filters__options {
    width: 100vw;
    text-align: left;
    line-height: 0;
}
@media screen and (min-width: 1024px) {
    .work-filters__options {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }
}
.work-filters__options-inner {
    background: #fff;
}
@media screen and (min-width: 1024px) {
    .work-filters__options-inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.work-filters__option {
    width: 100%;
    padding: 15px 15px;
    font-size: 0.722222222222222rem;
    letter-spacing: 0.111111111111111rem;
    color: #aaa;
    text-align: center;
    line-height: 1.6;
    background: none;
    border-bottom: none;
    border-color: #eee;
    border-size: 1px;
    cursor: pointer;
    transition: 0.4s color;
    outline: none;
}
@media screen and (min-width: 1024px) {
    .work-filters__option {
        text-align: left;
        padding: 0 15px;
        border: none;
    }
    .work-filters__option:hover {
        color: #f00;
    }
}
.work-filters__option.active {
    color: #f00;
}
.work-filters__title {
    display: flex;
    position: relative;
    background: none;
    border: none;
    margin: 0;
    cursor: pointer;
    width: 100%;
    text-align: center;
    outline: none;
    justify-content: center;
    height: 64px;
    padding-left: 0;
    align-items: center;
}
@media screen and (min-width: 1024px) {
    .work-filters__title {
        text-align: left;
        width: initial;
        justify-content: flex-start;
    }
    .work-filters__title::before {
        content: '';
        display: inline-block;
        width: 100%;
        height: 0.111111111111111rem;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #f00;
        transform-origin: center left;
        transform: scaleX(0);
        transition: 0.4s transform;
    }
}
.work-filters__title .headline {
    width: 56%;
    margin-bottom: 0;
    font-size: 0.583333333333333rem;
    letter-spacing: 0.111111111111111rem;
    color: #777;
    transition: 0.4s color;
    line-height: 17px;
}
@media screen and (min-width: 768px) {
    .work-filters__title .headline {
        width: 100%;
        line-height: 24px;
    }
}
@media screen and (min-width: 1024px) {
    .work-filters__title .headline {
        width: auto;
        font-size: 0.833333333333333rem;
        letter-spacing: 0;
        text-transform: none;
        color: #333745;
    }
    .work-filters__title .headline::before,
    .work-filters__title .headline::after {
        content: '';
        display: inline-block;
        width: 0.555555555555556rem;
        height: 0.111111111111111rem;
        margin-right: 0.555555555555556rem;
        background-color: #333745;
    }
    .work-filters__title .headline::after {
        z-index: 2;
        position: absolute;
        bottom: 26px;
        left: 0;
        background-color: #f00;
        transform-origin: center left;
        transform: scaleX(0);
        transition: 0.4s transform;
    }
}
.work-filters__title.active::before {
    transform: scaleX(1);
}
.work-filters__title.active .headline {
    color: #f00;
}
.work-filters__title.active .headline::after {
    transform: scaleX(1);
}
.work-filters__title.active .work-filters__arrow::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiNGMDAiPjwvcGF0aD48L3N2Zz4=');
}
@supports (-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)) or
    (clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)) {
    .work-filters__title.active .work-filters__arrow::after {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}
@media screen and (min-width: 1024px) {
    .work-filters__title:hover::before {
        transform: scaleX(1);
    }
    .work-filters__title:hover .headline {
        color: #f00;
    }
    .work-filters__title:hover .headline::after {
        transform: scaleX(1);
    }
    .work-filters__title:hover .work-filters__arrow::after {
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiNGMDAiPjwvcGF0aD48L3N2Zz4=');
    }
    @supports (-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%))
        or (clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)) {
        .work-filters__title:hover .work-filters__arrow::after {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
    }
}
.filters-tags {
    margin-bottom: 50px;
    display: none;
}
@media screen and (min-width: 1024px) {
    .filters-tags {
        display: block;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 62.5%;
        flex-preferred-size: 62.5%;
        max-width: 62.5%;
        margin-left: 25%;
    }
}
.filters-tags__item {
    display: inline-block;
    margin-right: 50px;
    line-height: 18px;
    color: #f00;
    font-family: 'Inter', sans-serif;
    font-size: 0.833333333333333rem;
    font-weight: 600;
}
.filters-tags__item--remove {
    margin-left: 10px;
    font-weight: 700;
    cursor: pointer;
}
.work__item {
    position: relative;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    margin-bottom: 50px;
    text-decoration: none;
}
.work__item:hover .btn__wording {
    color: #f00;
}
.work__item:hover:visited {
    color: #333745;
}
.work__item .item__inner {
    pointer-events: none;
}
.work__item .title {
    font-family: 'Playfair Display', serif;
    font-size: 1.666666666666667rem;
    line-height: 36px;
}
.work__item .paragraph {
    font-size: 0.833333333333333rem;
    line-height: 30px;
}
.work__item:hover .btn__wording {
    color: #f00;
}
@media screen and (min-width: 1024px) {
    .work__item:nth-child(even) .item__number {
        position: absolute;
        bottom: -90px;
        left: -90px;
    }
}
@media screen and (min-width: 1280px) {
    .work__item:nth-child(even) .item__number {
        position: absolute;
        bottom: 130px;
        left: -165px;
    }
}
@media screen and (min-width: 1024px) {
    .work__item:nth-child(odd) .item__number {
        position: absolute;
        bottom: -100px;
        left: -90px;
    }
}
@media screen and (min-width: 1280px) {
    .work__item:nth-child(odd) .item__number {
        position: absolute;
        bottom: 10px;
        left: -165px;
    }
}
.work__item--none {
    font-weight: 600;
    color: #777;
    display: none;
}
@media screen and (min-width: 1024px) {
    .work__item--none {
        margin-left: 25% !important;
    }
}
.work__item .item__content,
.work__item .item__image {
    position: relative;
    z-index: 5;
}
.work__item .item__image {
    overflow: hidden;
}
.work__item .item__number {
    position: absolute;
    bottom: -60px;
    left: -20px;
    z-index: 4;
}
@media screen and (min-width: 768px) {
    .work__item .item__number {
        position: absolute;
        bottom: -115px;
        left: -20px;
    }
}
.work__item .item__image-wrapper {
    position: relative;
    margin-bottom: 30px;
}
.work__item .item__title {
    margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
    .work__item .item__title {
        margin-bottom: 10px;
    }
}
.work__item .item__text,
.work__item .item__link {
    display: none;
}
@media screen and (min-width: 1024px) {
    .work__item .item__text,
    .work__item .item__link {
        display: block;
    }
}
.work__item .item__text {
    color: #777;
}
.work__item .picture__anim.picture__anim-end.image-block {
    transform: translateX(0px);
    transition: transform 1s cubic-bezier(0.125, 0.75, 0.415, 1);
}
.work__item .picture__anim.image-block {
    transform: translateX(-101%);
}
.work__item .image-block__image {
    top: 50%;
    left: 50%;
    width: auto;
    transform: translate(-50%, -50%) !important;
}
@media screen and (min-width: 1024px) {
    .view--mozaic .work__item__item {
        margin: 0;
    }
}
@media screen and (min-width: 1024px) {
    .view--list .work__item {
        display: flex;
        flex: 0 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0;
        width: 100%;
    }
    .view--list .work__item .item__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 100%;
        flex-preferred-size: 100%;
        max-width: 100%;
        position: relative;
    }
    .view--list .work__item .item__image-wrapper {
        display: flex;
        flex: 0 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        text-align: 'middle';
        float: left;
        margin: 0;
        width: 40%;
        height: 100%;
    }
    .view--list .work__item .item__content {
        display: flex;
        flex: 0 1 auto;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        text-align: 'middle';
        position: absolute;
        top: 0;
        left: 40%;
        width: 60%;
        height: 100%;
    }
    .view--list .work__item .item__text-wrapper {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
    }
    .view--list .work__item .item__link {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
    .view--list .work__item .item__image {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        height: auto;
    }
    .view--list .work__item .item__number {
        position: static;
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        text-align: center;
        font-size: 5rem;
    }
    .view--list .work__item .item__number .parallax-data {
        position: static !important;
    }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
    .view--list .work__item .item__number {
        font-size: 6.2rem;
    }
}
.work-popin {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    overflow: auto;
    width: 100vw;
    height: 100vh;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15%);
    transition:
        0.5s opacity cubic-bezier(0.125, 0.75, 0.415, 1),
        0.5s transform cubic-bezier(0.125, 0.75, 0.415, 1),
        0s visibility cubic-bezier(0.125, 0.75, 0.415, 1) 0.5s;
    display: flex;
    align-items: center;
}
.work-popin.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: 0.5s all cubic-bezier(0.125, 0.75, 0.415, 1) 0.2s;
}
.work-popin__close {
    position: absolute;
    top: 30px;
    right: 0;
    width: 12.5vw;
    padding: 0 20px 0 0;
    text-align: right;
    background: none;
    border: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.work-popin__close path {
    transition: 0.3s fill linear;
}
.work-popin__close:hover path {
    fill: #f00;
}
@media screen and (min-width: 1024px) {
    .work-popin__close {
        top: 5vw;
        text-align: center;
    }
}
@media screen and (min-width: 1024px) {
    .work-popin__wrap {
        display: flex;
        align-items: flex-start;
    }
}
.work-popin__inner {
    width: 100%;
    max-height: 100%;
    overflow: auto;
}
.work-popin__content {
    overflow: hidden;
    padding: 50px 0 40px;
}
@media screen and (min-width: 768px) {
    .work-popin__content {
        padding: 70px 0 85px;
    }
}
@media screen and (min-width: 1024px) {
    .work-popin__left {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 37.5%;
        flex-preferred-size: 37.5%;
        max-width: 37.5%;
        margin-left: 12.5%;
    }
}
@media screen and (max-width: 1023px) {
    .work-popin__right {
        padding-top: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .work-popin__right {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        margin-left: 12.5%;
    }
}
.work-popin figure {
    margin: 0;
}
.work-popin figcaption {
    font-size: 0.722222222222222rem;
    font-family: 'Inter', sans-serif;
    color: #404040;
    letter-spacing: 2.2px;
    margin-top: 30px;
}
.work-popin .tns-controls:focus {
    outline: none;
}
@media screen and (max-width: 1023px) {
    .work-popin .tns-controls {
        position: static;
        display: flex;
        justify-content: flex-end;
        margin-top: 15px;
        order: 1;
    }
    .work-popin .tns-controls button {
        margin: 0;
    }
    .work-popin .tns-controls button:first-child {
        transform: rotate(-90deg);
        margin-right: 20px;
    }
    .work-popin .tns-controls button:last-child {
        transform: rotate(90deg);
    }
}
@media screen and (min-width: 1024px) {
    .work-popin .tns-controls {
        left: auto;
        right: 0;
        top: 50%;
        width: 12.5vw;
        transform: translate(100%, -50%);
    }
    .work-popin .tns-controls button:first-child {
        margin-bottom: 20px;
    }
}
.work-popin .tns-nav {
    display: none;
}
@media screen and (max-width: 1023px) {
    .work-popin .tns-outer {
        display: flex;
        flex-direction: column;
    }
}
.work-popin .ratio-1-1 {
    position: relative;
    overflow: hidden;
}
.work-popin .ratio-1-1::before {
    display: block;
    width: 100%;
    padding-top: 100%;
    content: '';
}
.work-popin .ratio-1-1 > *:first-child {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    z-index: 1;
}
.work-popin .ratio-1-1 > *:first-child > img {
    width: 100%;
}
.work-popin .ratio-1-1 > *:first-child > img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-height: 100%;
}
.work-popin .work-detail__title {
    font-size: 2.222222222222222rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333745;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .work-popin .work-detail__title {
        margin-bottom: 25px;
        font-size: 3.333333333333333rem;
    }
}
.work-popin .work-detail__location {
    font-size: 1.666666666666667rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #333745;
    margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
    .work-popin .work-detail__location {
        font-size: 2rem;
    }
}
.work-popin .work-detail__chapo {
    font-size: 1rem;
    color: #404040;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .work-popin .work-detail__chapo {
        font-size: 1.111111111111111rem;
    }
}
.work-popin .work-detail-desc {
    margin-top: 25px;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.833333333333333rem;
    line-height: 1.2;
    color: #6d6f72;
}
.work-popin .work-detail-desc p {
    display: flex;
}
.work-popin .work-detail-desc p:not(:last-child) {
    margin-bottom: 15px;
}
.work-popin .work-detail-desc span {
    position: relative;
    flex-shrink: 0;
    max-width: 60%;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
    color: #333745;
}
.work-popin .work-detail-desc span:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    border-top: 2px solid;
}
@media screen and (min-width: 1024px) {
    .work-popin .work-detail-desc {
        margin-bottom: 105px;
    }
    .work-popin .work-detail-desc span {
        padding-right: 40px;
    }
}
.work-popin .work-detail__slider--container {
    position: relative;
    display: block;
    width: 100%;
}
.work-detail__content .img-wrapper__inner {
    width: 100%;
}
.work-detail__content .content__img-wrapper {
    position: relative;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.work-detail__content .content__img-1 {
    position: relative;
    z-index: 2;
}
.work-detail__content .content__bkg-text {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 0;
    margin-top: -0.5em;
}
@media screen and (min-width: 1024px) {
    .work-detail__content .content__bkg-text {
        left: 50%;
    }
}
.work-detail__content .content__catchphrase {
    position: relative;
    z-index: 3;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
    margin-left: 25%;
    margin-bottom: 50px;
    transform: translateY(-40px);
}
@media screen and (min-width: 1024px) {
    .work-detail__content .content__catchphrase {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 83.33333333333334%;
        flex-preferred-size: 83.33333333333334%;
        max-width: 83.33333333333334%;
        margin-left: 16.66%;
        margin-bottom: 115px;
        transform: translateY(-60px);
    }
}
.work-detail__content .content__text-img {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.work-detail__content .content__text-img.text--left {
    flex-direction: row-reverse;
}
.work-detail__content .content__quote {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
}
.work-detail__content .text-img__img,
.work-detail__content .text-img__text {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .work-detail__content .text-img__img,
    .work-detail__content .text-img__text {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-left: 16.66%;
        margin-bottom: 0;
    }
}
.work-detail__content .text-img__img strong,
.work-detail__content .text-img__text strong {
    color: #333745;
}
@media screen and (min-width: 1024px) {
    .work-detail__content .text--left .text-img__text {
        margin-left: 0%;
    }
    .work-detail__content .text--left .text-img__text .paragraph:first-child {
        padding-top: 13%;
    }
}
@media screen and (min-width: 1024px) {
    .work-detail__content .text--left .text-img__img {
        margin-right: 16.66%;
    }
}
.work-detail__quote {
    position: relative;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    text-align: 'middle';
    margin-top: 50px;
}
@media screen and (min-width: 1024px) {
    .work-detail__quote {
        justify-content: flex-end;
        margin-top: 80px;
        margin-bottom: 40px;
    }
}
.work-detail__quote .quote__bkg-text {
    position: absolute;
    top: -27px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
}
.work-detail__quote .quote__quote {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .work-detail__quote .quote__quote {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 16.66%;
    }
}
.work-detail__quote .quote__quote strong {
    color: #f00;
}
.work-detail__quote .quote__image {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 50%;
    flex-preferred-size: 50%;
    max-width: 50%;
    margin-top: 75px;
    margin-right: 25%;
}
@media screen and (min-width: 1024px) {
    .work-detail__quote .quote__image {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 16.666666666666664%;
        flex-preferred-size: 16.666666666666664%;
        max-width: 16.666666666666664%;
        margin-right: 0;
    }
}
.work-detail__quote .image-block {
    margin-bottom: 30px;
}
.work-detail__module {
    position: relative;
    margin-top: 20px;
}
@media screen and (min-width: 1024px) {
    .work-detail__module {
        margin-top: 100px;
        margin-left: 12.5%;
        max-width: 75%;
    }
}
.work-detail__module .module__inner {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    text-align: 'top';
    padding-top: 30px;
    padding-bottom: 30px;
}
@media screen and (min-width: 1024px) {
    .work-detail__module .module__inner {
        padding-top: 150px;
        padding-bottom: 150px;
    }
}
.work-detail__module .module__image {
    position: relative;
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .work-detail__module .module__image {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-left: 50%;
    }
}
.work-detail__module .module__text {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    margin-top: 50px;
}
@media screen and (min-width: 768px) {
    .work-detail__module .module__text {
        margin-top: 45px;
    }
}
@media screen and (min-width: 1024px) {
    .work-detail__module .module__text {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 16.666666666666664%;
        margin-bottom: 20px;
    }
}
.work-detail__module .module__catchphrase {
    position: relative;
    z-index: 2;
    margin-right: 0;
    margin-left: auto;
    margin-top: -0.6em;
    width: 80%;
}
@media screen and (min-width: 1024px) {
    .work-detail__module .module__catchphrase {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 16.666666666666664%;
        width: auto;
        margin-top: -2.5em;
    }
}
.work-detail__module .module__link {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .work-detail__module .module__link {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 16.666666666666664%;
    }
}
.work-detail__bkg-text {
    margin-top: 20px;
    margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
    .work-detail__bkg-text {
        margin-top: 150px;
        margin-bottom: 0;
    }
}
.work-detail__bkg-text .bkg-text__inner {
    position: relative;
    overflow: hidden;
    padding-top: 390px;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .work-detail__bkg-text .bkg-text__inner {
        padding-top: 215px;
    }
}
.work-detail__bkg-text .bkg-text__bkg {
    position: absolute;
    top: 0;
    left: 50%;
    white-space: nowrap;
    transform: translateX(-50%);
}
.work-detail__bkg-text .bkg-text__content {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
}
.work-detail__bkg-text .bkg-text__text {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    margin-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .work-detail__bkg-text .bkg-text__text {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 12.5%;
        flex-preferred-size: 12.5%;
        max-width: 12.5%;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1024px) {
    .work-detail__bkg-text .link--all {
        margin-left: 12.5%;
    }
}
@media screen and (min-width: 1024px) {
    .work-detail__bkg-text .link--previous {
        margin-left: 37.5%;
    }
}
.work-detail__bkg-text .bkg-text__arrow {
    transform: translateY(4px);
}
.work-detail__bkg-text .bkg-text--all {
    transform: translateY(2px);
}
.publications-item {
    width: 100%;
    list-style-type: none;
}
@media screen and (max-width: 767px) {
    .publications-item {
        margin-bottom: 50px;
    }
}
.publications-item__inner {
    width: 100%;
    text-decoration: none;
    color: #333745;
}
@media screen and (min-width: 768px) {
    .publications-item__inner {
        display: flex;
        align-items: center;
        padding: 35px 0;
    }
}
@media screen and (min-width: 1024px) {
    .publications-item__inner {
        padding: 50px 0;
    }
}
@media screen and (min-width: 768px) {
    .publications-item__info {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
    }
}
@media screen and (min-width: 1024px) {
    .publications-item__info {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 20%;
        flex-preferred-size: 20%;
        max-width: 20%;
    }
}
.publications-item__type {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.611111111111111rem;
    color: #777;
}
.publications-item__title {
    width: 100%;
    margin: 15px 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 1.444444444444444rem;
}
@media screen and (min-width: 768px) {
    .publications-item__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin: 0;
        font-size: 1.666666666666667rem;
        padding-right: 15px;
    }
}
@media screen and (min-width: 1024px) {
    .publications-item__title {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 60%;
        flex-preferred-size: 60%;
        max-width: 60%;
    }
}
@media screen and (min-width: 768px) {
    .publications-item__link {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
        display: flex;
        justify-content: flex-end;
    }
}
@media screen and (min-width: 1024px) {
    .publications-item__link {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 20%;
        flex-preferred-size: 20%;
        max-width: 20%;
    }
}
.publications-filters {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    z-index: 9999;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #eee;
}
@media screen and (min-width: 1024px) {
    .publications-filters {
        z-index: 2;
        position: relative;
        bottom: auto;
        left: auto;
        margin-bottom: 20px;
        background: none;
    }
}
.publications-filters__inner {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 100%;
    flex-preferred-size: 100%;
    max-width: 100%;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 100%;
}
@media screen and (min-width: 1024px) {
    .publications-filters__inner {
        min-width: 25%;
        margin-left: 25%;
        width: 50%;
        flex-wrap: nowrap;
    }
}
@media screen and (min-width: 1279px) and (max-width: 1420px) {
    .publications-filters__inner {
        min-width: 25% !important;
        margin-left: 25% !important;
        width: 50% !important;
    }
}
@media screen and (min-width: 1280px) {
    .publications-filters__inner {
        width: 25%;
    }
}
.publications-filters__list {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 50%;
    flex-preferred-size: 50%;
    max-width: 50%;
    position: relative;
}
.publications-filters__list
    + .publications-filters__list
    .publications-filters__title {
    border-left: 1px solid #fff;
}
@media screen and (min-width: 1024px) {
    .publications-filters__list
        + .publications-filters__list
        .publications-filters__title {
        border: none;
    }
}
.publications-filters__arrow {
    display: none;
    width: 13px;
    height: 8px;
    position: relative;
    margin-right: 10px;
    margin-left: 10px;
    align-self: center;
    justify-self: flex-end;
}
@media screen and (min-width: 1024px) {
    .publications-filters__arrow {
        display: inline-block;
    }
}
.publications-filters__arrow::before,
.publications-filters__arrow::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiMwMDAiPjwvcGF0aD48L3N2Zz4=');
}
.publications-filters__arrow::after {
    transition: all 0.4s ease;
}
.publications-filters__options-wrapper {
    z-index: 9999;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100vw;
    display: none;
    opacity: 0;
    transition: 0.4s opacity;
    background: #fff;
}
@media screen and (min-width: 1024px) {
    .publications-filters__options-wrapper {
        z-index: 1;
        width: 100%;
        height: auto;
        position: relative;
        bottom: 0;
        left: auto;
        overflow: visible;
        background: none;
    }
}
.publications-filters__options-wrapper.active {
    display: block;
    opacity: 1;
}
.publications-filters__options {
    width: 100vw;
    text-align: left;
    line-height: 0;
}
@media screen and (min-width: 1024px) {
    .publications-filters__options {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }
}
.publications-filters__options-inner {
    background: #fff;
}
@media screen and (min-width: 1024px) {
    .publications-filters__options-inner {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
.publications-filters__option {
    width: 100%;
    padding: 15px 15px;
    font-size: 0.722222222222222rem;
    letter-spacing: 0.111111111111111rem;
    color: #aaa;
    text-align: center;
    line-height: 1.6;
    background: none;
    border-bottom: none;
    border-color: #eee;
    border-size: 1px;
    cursor: pointer;
    transition: 0.4s color;
    outline: none;
}
@media screen and (min-width: 1024px) {
    .publications-filters__option {
        text-align: left;
        padding: 0 15px;
        border: none;
    }
    .publications-filters__option:hover {
        color: #f00;
    }
}
.publications-filters__option.active {
    color: #f00;
}
.publications-filters__title {
    display: flex;
    position: relative;
    background: none;
    border: none;
    margin: 0;
    cursor: pointer;
    width: 100%;
    text-align: center;
    outline: none;
    justify-content: center;
    height: 64px;
    padding-left: 0;
    align-items: center;
}
@media screen and (min-width: 1024px) {
    .publications-filters__title {
        text-align: left;
        justify-content: flex-start;
        width: 100%;
    }
    @supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) or
        (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) {
        .publications-filters__title {
            width: initial;
        }
    }
    .publications-filters__title::before {
        content: '';
        display: inline-block;
        width: 50%;
        height: 0.111111111111111rem;
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #f00;
        transform-origin: center left;
        transform: scaleX(0);
        transition: 0.4s transform;
    }
    @supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) or
        (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) {
        .publications-filters__title::before {
            width: 100%;
        }
    }
}
.publications-filters__title .headline {
    width: 56%;
    margin-bottom: 0;
    font-size: 0.583333333333333rem;
    letter-spacing: 0.111111111111111rem;
    color: #777;
    transition: 0.4s color;
    line-height: 17px;
}
@media screen and (min-width: 768px) {
    .publications-filters__title .headline {
        width: 100%;
        line-height: 24px;
    }
}
@media screen and (min-width: 1024px) {
    .publications-filters__title .headline {
        width: auto;
        font-size: 0.833333333333333rem;
        letter-spacing: 0;
        text-transform: none;
        color: #333745;
    }
    .publications-filters__title .headline::before,
    .publications-filters__title .headline::after {
        content: '';
        display: inline-block;
        width: 0.555555555555556rem;
        height: 0.111111111111111rem;
        margin-right: 0.555555555555556rem;
        background-color: #333745;
    }
    .publications-filters__title .headline::after {
        z-index: 2;
        position: absolute;
        bottom: 26px;
        left: 0;
        background-color: #f00;
        transform-origin: center left;
        transform: scaleX(0);
        transition: 0.4s transform;
    }
}
.publications-filters__title.active::before {
    transform: scaleX(1);
}
.publications-filters__title.active .headline {
    color: #f00;
}
.publications-filters__title.active .headline::after {
    transform: scaleX(1);
}
.publications-filters__title.active .publications-filters__arrow::after {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiNGMDAiPjwvcGF0aD48L3N2Zz4=');
}
@supports (-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)) or
    (clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)) {
    .publications-filters__title.active .publications-filters__arrow::after {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}
@media screen and (min-width: 1024px) {
    .publications-filters__title:hover::before {
        transform: scaleX(1);
    }
    .publications-filters__title:hover .headline {
        color: #f00;
    }
    .publications-filters__title:hover .headline::after {
        transform: scaleX(1);
    }
    .publications-filters__title:hover .publications-filters__arrow::after {
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIxMyIgaGVpZ2h0PSI4Ij48cGF0aCBkPSJNNi41IDUuMDg2bDUtNUwxMi45MTQgMS41bC01IDVMNi41IDcuOTE0LjA4NiAxLjUgMS41LjA4Nmw1IDV6IiB0cmFuc2Zvcm09InJvdGF0ZSg5MGRlZykiIGZpbGw9IiNGMDAiPjwvcGF0aD48L3N2Zz4=');
    }
    @supports (-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%))
        or (clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%)) {
        .publications-filters__title:hover .publications-filters__arrow::after {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
    }
}
.activity-keyfigures {
    margin-top: -15px;
    color: #333745;
}
.activity-keyfigures__number {
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 3.888888888888889rem;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .activity-keyfigures__number {
        font-size: 5rem;
    }
}
.activity-keyfigures__subtitle {
    padding-bottom: 35px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.666666666666667rem;
    line-height: 35px;
}
@media screen and (min-width: 768px) {
    .activity-keyfigures__subtitle {
        padding-bottom: 70px;
    }
}
.activity-keyfigures__slider-number {
    width: 33.33%;
    flex-shrink: 0;
    font-size: 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .activity-keyfigures__slider-number {
        font-size: 3.333333333333333rem;
    }
}
@media screen and (min-width: 1024px) {
    .activity-keyfigures__slider-number {
        width: 50%;
    }
}
.activity-keyfigures__slider-wrap {
    position: relative;
    overflow: hidden;
    width: 75%;
}
@media screen and (min-width: 1024px) {
    .activity-keyfigures__slider-wrap {
        width: 100%;
    }
}
.activity-keyfigures__slider-item {
    display: flex;
    align-items: center;
    width: calc(75vw - 15px);
    flex-shrink: 0;
}
@media screen and (min-width: 768px) {
    .activity-keyfigures__slider-item {
        width: calc(75vw - 30px);
    }
}
@media screen and (min-width: 1024px) {
    .activity-keyfigures__slider-item {
        width: 25vw;
    }
}
.activity-keyfigures__slider {
    position: relative;
}
.activity-keyfigures__slider-controls {
    position: absolute;
    top: 50%;
    right: 0;
    width: 25%;
    transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
    .activity-keyfigures__slider-controls {
        right: auto;
        left: 100%;
        width: 12.5vw;
    }
}
.activity-keyfigures__slider-inner {
    display: flex;
    transition: 0.5s transform ease-in;
}
.activity-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 35px;
    padding: 0;
    list-style-type: none;
}
@media screen and (min-width: 768px) {
    .activity-tabs__nav {
        margin-bottom: 50px;
    }
}
@media screen and (min-width: 1024px) {
    .activity-tabs__nav {
        margin-bottom: 100px;
    }
}
.activity-tabs__nav-item {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 50%;
    flex-preferred-size: 50%;
    max-width: 50%;
}
@media screen and (min-width: 768px) {
    .activity-tabs__nav-item {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
    }
}
@media screen and (min-width: 1024px) {
    .activity-tabs__nav-item {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 16.666666666666664%;
        flex-preferred-size: 16.666666666666664%;
        max-width: 16.666666666666664%;
    }
}
.activity-tabs__nav-button {
    position: relative;
    width: 100%;
    padding: 0 0 10px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.888888888888889rem;
    color: #333745;
    cursor: pointer;
    transition: 0.3s color linear;
}
@media screen and (max-width: 767px) {
    .activity-tabs__nav-button {
        margin-bottom: 5px;
    }
}
@media screen and (min-width: 768px) {
    .activity-tabs__nav-button {
        padding-bottom: 30px;
        font-size: 1.111111111111111rem;
    }
}
.activity-tabs__nav-button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 2px solid;
    transform-origin: 0 0;
    transform: scaleX(0);
    transition: 0.3s transform ease-in;
}
.activity-tabs__nav-button:hover,
.activity-tabs__nav-button.is-active {
    color: #f00;
}
.activity-tabs__nav-button:hover:after,
.activity-tabs__nav-button.is-active:after {
    transform: scaleX(1);
}
.activity-tabs-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.activity-tabs-slider a:not(.btn) {
    text-decoration: none;
    color: #333745;
}
.activity-tabs-slider a:not(.btn):hover {
    color: #f00;
}
.activity-tabs-slider .image-block {
    padding-top: 100%;
}
.activity-tabs-slider__slides {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.activity-tabs-slider__slide {
    float: left;
    width: 100%;
}
.activity-tabs-slider__slide .btn {
    margin-top: 25px;
}
@media screen and (min-width: 1024px) {
    .activity-tabs-slider__slide {
        display: flex;
        align-items: flex-start;
    }
}
.activity-tabs-slider__slide-left {
    width: 100%;
    display: block;
}
@media screen and (max-width: 1023px) {
    .activity-tabs-slider__slide-left {
        margin-bottom: 45px;
    }
}
@media screen and (min-width: 1024px) {
    .activity-tabs-slider__slide-left {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
}
.activity-tabs-slider__slide-right {
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .activity-tabs-slider__slide-right {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 16.666666666666664%;
    }
}
@media screen and (max-width: 767px) {
    .activity-real {
        padding-top: 20px;
    }
}
.activity-real-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.activity-real-slider .image-block {
    padding-bottom: 50%;
}
.activity-real-slider__slide {
    float: left;
    width: 100%;
}
.activity-real-slider__inner {
    overflow: hidden;
    width: 100%;
}
.activity-real-slider__slides {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.activity-real-slider__controls {
    position: absolute;
    top: calc(25px + 50vw);
    right: 0;
    z-index: 5;
    width: 25%;
}
@media screen and (min-width: 768px) {
    .activity-real-slider__controls {
        top: calc(30px + 50vw);
    }
}
@media screen and (min-width: 1024px) {
    .activity-real-slider__controls {
        top: 41vw;
        width: 16.6%;
    }
}
.activity-real-slider__slide-content {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 75%;
    flex-preferred-size: 75%;
    max-width: 75%;
    padding-top: 25px;
    padding-right: 15px;
}
@media screen and (min-width: 768px) {
    .activity-real-slider__slide-content {
        padding-top: 35px;
    }
}
@media screen and (min-width: 1024px) {
    .activity-real-slider__slide-content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
    }
}
.activity-real-slider__slide-location {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.833333333333333rem;
    font-weight: 600;
    color: $color__gary--darker;
    margin-top: -10px;
    margin-bottom: 10px;
}
.activity-real-slider .date {
    display: block;
    margin-bottom: 30px;
}
.activity-real-slider .controls__arrows__inner {
    display: flex;
    justify-content: center;
}
.activity-real-slider .controls__arrow {
    margin: 0;
}
.activity-real-slider .controls__arrow:first-child {
    margin-right: 15px;
}
@media screen and (min-width: 768px) {
    .activity-real-slider .controls__arrow:first-child {
        margin-right: 30px;
    }
}
.activity-half-content {
    position: relative;
}
@media screen and (max-width: 1023px) {
    .activity-half-content__left {
        margin-bottom: 35px;
    }
}
@media screen and (min-width: 1024px) {
    .activity-half-content {
        display: flex;
        align-items: flex-start;
    }
    .activity-half-content__left {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
    .activity-half-content__right {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 16.666666666666664%;
    }
}
@media screen and (min-width: 1024px) {
    .activity-content__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        margin-left: 16.666666666666664%;
    }
}
.activity-content__img {
    margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
    .activity-content__img {
        margin-bottom: 45px;
    }
}
@media screen and (min-width: 1024px) {
    .picture__anim {
        overflow: hidden;
    }
    .picture__anim.image-block img {
        transform: translateX(-101%);
    }
    .picture__anim.image-block img.middle {
        transform: translateX(-100%) translateY(-50%);
        top: 50%;
    }
    .picture__anim.tg-block__image-wrapper:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        z-index: 20;
        width: 100%;
        height: 100%;
        transform-origin: center right;
        transition: transform 1s cubic-bezier(0.125, 0.75, 0.415, 1);
        background: #fff;
    }
    .picture__anim.picture__anim-end.image-block img {
        transform: translateX(0px);
        transition: transform 1s cubic-bezier(0.125, 0.75, 0.415, 1);
    }
    .picture__anim.picture__anim-end.image-block img.middle {
        transform: translateX(0px) translateY(-50%);
    }
    .picture__anim.picture__anim-end.tg-block__image-wrapper:after {
        transform: scaleX(0);
    }
}
.popin-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 29;
    opacity: 0;
    overflow-y: scroll;
    transition: opacity 1500ms ease-in-out;
}
.popin-intro__enabled {
    opacity: 1;
}
.popin-intro__bkg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1, auto;
    transition: opacity 1500ms ease-in-out;
}
.popin-intro__pop {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    opacity: 1;
    background: #fff;
    z-index: 2;
    transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 767px) {
    .popin-intro__pop {
        width: calc(100% * 6 / 8);
        max-width: 320px;
        max-height: 80%;
    }
}
@media screen and (min-width: 768px) {
    .popin-intro__pop {
        width: auto;
        max-width: 1024px;
    }
}
.popin-intro .popin__wrap {
    position: relative;
    background: #fff;
    height: 100%;
    transition: all 1500ms ease-in-out;
}
.popin-intro .popin__close {
    position: absolute;
    top: -25px;
    right: 10px;
    width: 23px;
    height: 23px;
    z-index: 10;
    transform: rotate(-45deg);
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .popin-intro .popin__close {
        top: -15px;
        right: 2px;
        width: 15px;
        height: 15px;
    }
}
.popin-intro .popin__close:before,
.popin-intro .popin__close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    background: #d3d3d3;
    transform: translateY(-50%) translateX(-50%);
}
.popin-intro .popin__close:before {
    height: 3px;
    width: 100%;
}
.popin-intro .popin__close:after {
    height: 100%;
    width: 3px;
}
.popin-intro .popin__close:hover:after,
.popin-intro .popin__close:hover:before {
    background: #fff;
}
.popin-intro .popin .alert__block {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
@media screen and (min-width: 1024px) {
    .popin-intro .popin .alert__block {
        flex-direction: row;
    }
}
.popin-intro .popin .alert__content {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    order: 1;
    padding: 0px;
    width: 100%;
    min-width: 100%;
}
.popin-intro .popin .alert__content .paragraph {
    margin-bottom: 0;
    border: 0;
    line-height: 0;
}
@media screen and (max-width: 767px) {
    .popin-intro .popin .alert__content .paragraph {
        overflow-y: scroll !important;
    }
}
.popin-intro .popin .alert__content .paragraph p,
.popin-intro .popin .alert__content .paragraph h1,
.popin-intro .popin .alert__content .paragraph h2,
.popin-intro .popin .alert__content .paragraph h3,
.popin-intro .popin .alert__content .paragraph a {
    margin: 0;
    border-bottom: 0px;
}
.popin-intro .popin .alert__content .paragraph img {
    margin: 0;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
}
@media screen and (max-width: 767px) {
    .popin-intro .popin .alert__content .paragraph img {
        height: auto !important;
    }
}
@media screen and (min-width: 768px) {
    .popin-intro .popin .alert__content {
        flex-preferred-size: 100%;
        max-width: 100%;
        min-width: 100%;
        order: 2;
        padding: 0px;
    }
}
@media screen and (max-width: 767px) {
    .popin-intro .popin .alert__content {
        flex-preferred-size: 100%;
        max-width: 320px;
        max-height: 80%;
        order: 2;
        padding: 0px;
    }
}
.popin-intro .popin .alert__content .title strong {
    color: #f00;
}
.popin-intro .popin .alert__content .btn__wording {
    max-width: 100%;
}
.popin-intro .popin .alert__content .paragraph strong {
    color: #000;
}
.popin-intro .popin .alert__content .customWebkit::-webkit-scrollbar {
    /* Scrollbars */
    width: 14px;
    height: 14px;
    background-color: #aaa;
}
.popin-press {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    visibility: hidden;
}
.popin-press.is-visible {
    visibility: visible;
}
.popin-press.is-visible .popin-press__background,
.popin-press.is-visible .popin-press__pop {
    opacity: 1;
    visibility: visible;
}
.popin-press.is-visible .popin-press__pop {
    transform: translateY(0);
}
.popin-press__background {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition:
        0.3s opacity ease-in,
        0.3s visibility ease-in;
}
.popin-press__pop {
    position: relative;
    height: auto;
    max-height: 90vh;
    width: calc(100% - 30px);
    transform: translateY(-10%);
    overflow: hidden;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 102;
    transition:
        0.3s opacity ease-in,
        0.3s visibility ease-in,
        0.3s transform ease-in;
}
@media screen and (min-width: 768px) {
    .popin-press__pop {
        width: 700px;
    }
}
.popin-press__inner {
    position: relative;
    overflow: auto;
    padding: 50px 30px 25px;
    max-height: 90vh;
}
@media screen and (min-width: 768px) {
    .popin-press__inner {
        padding: 70px 50px 45px;
    }
}
@media screen and (min-width: 1024px) {
    .popin-press__inner {
        padding: 70px 100px 45px;
    }
}
.popin-press__close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 17px;
    height: 17px;
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    -webkit-appearance: none;
    cursor: pointer;
}
.popin-press__close path {
    transition: 0.3s stroke linear;
}
.popin-press__close:hover path {
    stroke: #f00;
}
@media screen and (min-width: 768px) {
    .popin-press__close {
        top: 50px;
        right: 50px;
    }
}
.popin-press .form--email {
    margin-top: -10px;
}
.popin-press .form__row {
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .popin-press .form__row {
        width: 75%;
    }
}
@media screen and (min-width: 1024px) {
    .popin-press .form__row {
        margin-bottom: 20px;
    }
}
.popin-press .form__errors {
    margin-top: 10px;
}
.popin-press .form__error {
    display: none;
    margin-bottom: 5px;
    opacity: 0;
}
.popin-press .form--rgpd {
    font-size: 0.722222222222222rem;
    line-height: 1.5;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #777;
    padding-top: 25px;
}
.popin-press .form--rgpd a {
    color: #777;
    border-bottom-color: currentColor;
}
.popin-press .form--rgpd a:hover {
    color: #f00;
}
.popin-press .form__input--text {
    display: block;
    border-top: 0;
    border-right: 0;
    border-bottom: 2px solid #dedede;
    border-left: 0;
    padding-top: 13px;
    padding-bottom: 20px;
    width: 100%;
    background: transparent;
    color: #333745;
    font-weight: 400;
    font-size: 0.833333333333333rem;
}
.popin-press .form__input--text:focus {
    outline: 0;
}
.popin-press .form__input--text::-webkit-input-placeholder {
    font-size: 0.833333333333333rem;
    font-weight: 600;
    color: #777;
    opacity: 1;
}
.popin-press .form__input--text:-moz-placeholder {
    font-size: 0.833333333333333rem;
    font-weight: 600;
    color: #777;
    opacity: 1;
}
.popin-press .form__input--text::-moz-placeholder {
    font-size: 0.833333333333333rem;
    font-weight: 600;
    color: #777;
    opacity: 1;
}
.popin-press .form__input--text:-ms-input-placeholder {
    font-size: 0.833333333333333rem;
    font-weight: 600;
    color: #777;
    opacity: 1;
}
.popin-press .form__input--select {
    visibility: hidden;
}
.popin-press .form .form--submit .form__sent {
    display: none;
    letter-spacing: 0;
    font-weight: 600;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    line-height: 1em;
    color: #333745;
    opacity: 0;
}
.popin-press .form .form--submit .btn {
    background: transparent;
    border: 0;
    padding: 0;
    text-shadow: none;
}
.popin-press .form .cs-select {
    position: relative;
    border-top: 0;
    border-right: 2px solid #dedede;
    border-bottom: 2px solid #dedede;
    border-left: 0;
    padding-top: 15px;
    padding-bottom: 20px;
    padding-right: 40px;
    height: 55px;
}
.popin-press .form .cs-select:before {
    content: '';
    position: absolute;
    top: 31%;
    right: 15px;
    width: 11px;
    height: 16px;
    background: transparent url('/static/images/menu-arrow.svg') top left
        no-repeat;
    transition: transform 0.2s;
    transform: rotate(-90deg);
}
.popin-press .form .cs-select.open .cs-wrapper .cs-list {
    opacity: 1;
    transform: scaleY(1);
}
.popin-press .form .cs-select.open:before {
    transform: rotate(90deg);
}
.popin-press .form .cs-select.above .cs-wrapper .cs-list {
    position: absolute;
    bottom: 10px;
    left: 0;
    top: auto;
    transform-origin: left bottom 0;
}
.popin-press .form .cs-select .cs-list {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 2;
    border: 2px solid #dedede;
    border-top: 0;
    padding: 0;
    max-height: 200px;
    width: 100.1%;
    background-color: #fff;
    opacity: 0;
    transform-origin: 0 0 0;
    transform: scaleY(0);
    transition: all 0.2s ease-in-out;
    overflow: auto;
}
.popin-press .form .cs-select .cs-option {
    float: none;
    display: block;
    margin: 0;
    padding: 10px 20px;
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    color: #777;
    text-align: left;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.popin-press .form .cs-select .cs-option:hover {
    color: #fff;
    background-color: #777;
}
.popin-press .form .cs-select .cs-option.disabled {
    display: none;
}
.popin-press .form .cs-select .cs-label {
    font-size: 0.833333333333333rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #777;
}
.popin-press .press__form--right {
    margin-top: 30px;
}
.popin-press .grecaptcha-badge {
    position: static !important;
    bottom: 0;
    right: 0;
    margin-bottom: 35px;
}
.popin-press .g-recaptcha {
    position: absolute;
    visibility: hidden;
    top: 0;
    pointer-events: none;
}
.keepeek--container img.content-video__poster {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.keepeek--article {
    height: 400px;
}
@media screen and (min-width: 1024px) {
    .keepeek--article {
        height: 20vw;
    }
}
.breadcrumb {
    position: absolute;
    z-index: 100;
    top: 60px;
    margin-top: 20px;
    padding-left: 20px;
    color: #333745;
    font-weight: 600;
}
@media screen and (min-width: 1024px) {
    .breadcrumb {
        padding-left: 0;
    }
}
@media screen and (min-width: 1024px) {
    .breadcrumb {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin-left: 12.55%;
    }
}
@media screen and (max-width: 767px) {
    .breadcrumb {
        display: none;
    }
}
@media screen and (max-width: 1023px) {
    .breadcrumb {
        display: none;
    }
}
.breadcrumb__nav {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
}
.breadcrumb__link {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    font-size: inherit;
    color: #333745;
    height: 28px;
}
@media screen and (max-width: 767px) {
    .breadcrumb__link {
        margin-right: 10px;
    }
}
.breadcrumb__link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid currentColor;
    width: 100%;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: 0.3s all linear;
}
.breadcrumb__link:hover:after {
    transform: scaleX(1);
}
.breadcrumb__item {
    display: flex;
    font-size: 0.722222222222222rem;
    align-items: center;
    height: 26px;
    padding-bottom: -7px;
}
@media screen and (min-width: 1280px) {
    .breadcrumb__item {
        font-size: 0.833333333333333rem;
    }
}
.breadcrumb__item svg {
    padding-top: 4px;
}
.breadcrumb__item path {
    fill: #333745;
}
.breadcrumb__item:not(:last-child) {
    margin-right: 15px;
}
@media screen and (max-width: 767px) {
    .breadcrumb__item:not(:last-child) {
        margin-right: 10px;
    }
}
.breadcrumb__next-item {
    padding-bottom: 8px;
}
.breadcrumb--black {
    color: #333745;
}
.breadcrumb--black .breadcrumb__link {
    color: #333745;
}
.breadcrumb--black .breadcrumb__link:after {
    border-color: #333745;
}
.breadcrumb--black .breadcrumb__item svg {
    fill: #333745;
}
.breadcrumb--black .breadcrumb__item path {
    fill: #333745;
}
.article-header {
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.article-header.has-bg svg {
    fill: #333745;
}
@media screen and (min-width: 768px) {
    .article-header.has-bg {
        color: #333745;
    }
    .article-header.has-bg .article-header__chapo {
        color: #595959;
    }
}
@media screen and (max-width: 767px) {
    .article-header.has-bg .article-header__wrap-title {
        position: relative;
        overflow: hidden;
        padding: 0 20px 20px;
        margin: 0 -20px;
        color: #333745;
    }
}
.article-header__fake-play {
    opacity: 0;
    visibility: hidden;
}
.article-header__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.home .article-header__bg:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
}
@media screen and (max-width: 1023px) {
    .home .article-header__bg {
        background-position: 75% center;
    }
}
@media screen and (min-width: 1024px) {
    .home .article-header__bg {
        background-position: 75% center;
    }
}
.has-bg .article-header__bg:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    opacity: 1;
}
.article-header__bg.faded:after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #fff 100%);
}
.article-header__bg--youtube-wrap {
    top: 50%;
    bottom: auto;
    left: 50%;
    height: 0;
    min-width: 100%;
    padding-top: 56.5vw;
    transform: translate(-50%, -50%);
}
.article-header__bg--youtube {
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
}
.article-header__bg--video {
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
@media screen and (max-width: 767px) {
    .article-header__wrap-title {
        padding: 20px 0 25px;
    }
}
.article-header__title {
    position: relative;
    z-index: 2;
    margin: 0;
    font-weight: 700;
    font-size: 1.666666666666667rem;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .article-header__title {
        margin-bottom: 30px;
        font-size: 4.444444444444445rem;
    }
}
@media screen and (max-width: 767px) {
    .home .article-header__title {
        font-size: 50px;
        padding-right: 90px;
    }
}
.article-header__content {
    padding: 30px 10px 0;
}
@media screen and (max-width: 1023px) {
    .article-header__content {
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 768px) {
    .article-header__content {
        padding: 50px 20px 50px;
    }
}
@media screen and (min-width: 1024px) {
    .article-header__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        margin: 0 auto;
        padding-top: 140px;
        padding-right: 0;
        padding-left: 0;
    }
}
@media screen and (min-width: 1280px) {
    .article-header__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
}
.article-header__chapo {
    position: relative;
    z-index: 2;
    margin-top: 15px;
    color: #595959;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}
@media screen and (min-width: 768px) {
    .article-header__chapo {
        margin-top: 35px;
        font-size: 1.111111111111111rem;
    }
}
@media screen and (max-width: 767px) {
    .home .article-header__chapo {
        padding-right: 35%;
    }
}
.article-header__share {
    position: relative;
    z-index: 2;
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.article-header__share li:not(:last-child) {
    margin-right: 35px;
}
.article-header__share button {
    background: transparent;
    -webkit-appearance: none;
    border: none;
    cursor: pointer;
}
.article-header__share button:focus {
    outline: none;
}
.article-header__share a,
.article-header__share button {
    transition: 0.3s opacity linear;
}
.article-header__share a:hover,
.article-header__share button:hover {
    opacity: 0.6;
}
@media print {
    .article-header {
        padding: 50px 0;
    }
    .article-header__share {
        display: none;
    }
}
.article-trio__content {
    flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
    .article-trio__content {
        margin-bottom: 25px;
    }
}
@media screen and (min-width: 1024px) {
    .article-trio__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
    }
}
@media screen and (min-width: 1024px) {
    .article-trio__txt {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
    }
}
.article-trio__container {
    display: flex;
}
@media screen and (max-width: 1023px) {
    .article-trio__container {
        flex-direction: column;
    }
}
@media screen and (min-width: 1024px) {
    .article-trio__container > div:last-child {
        margin-left: 16.666666666666664%;
    }
}
.article-trio__container--reverse .article-trio__content {
    order: 1;
}
.article-trio__container--reverse > div:last-child {
    margin-left: 0;
}
@media screen and (min-width: 1024px) {
    .article-trio__container--reverse > div:first-child {
        margin-left: 16.666666666666664%;
    }
}
@media screen and (max-width: 1023px) {
    .article-trio__container--reverse .article-trio__content {
        margin-top: 25px;
        margin-bottom: 0;
    }
}
@media print {
    .article-trio__container {
        display: block;
    }
    .article-trio__txt {
        width: 100%;
    }
    .article-trio__content {
        width: 50%;
        margin: 15px auto 50px;
    }
}
@media screen and (min-width: 1024px) {
    .article-txt-full__content {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 83.33333333333334%;
        flex-preferred-size: 83.33333333333334%;
        max-width: 83.33333333333334%;
    }
}
.article-focus {
    padding: 30px 20px;
    background-color: #eee;
    color: #333745;
    font-family: 'Playfair Display', serif;
}
@media screen and (min-width: 1024px) {
    .article-focus {
        padding: 100px 0;
    }
}
@media screen and (min-width: 1024px) {
    .article-focus__inner {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        margin: 0 auto;
    }
}
.article-focus__title {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}
.article-focus .paragraph {
    padding: 10px 0 0;
}
@media screen and (min-width: 1024px) {
    .article-focus .paragraph {
        padding: 20px 0 15px;
    }
}
@media print {
    .article-focus {
        -webkit-print-color-adjust: exact;
        page-break-inside: avoid;
    }
}
@media screen and (max-width: 1023px) {
    .article-key-figures {
        display: flex;
    }
}
.article-key-figures__slides {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
    transition: transform 0.4s ease;
}
@media screen and (min-width: 1024px) {
    .article-key-figures__slides {
        flex-wrap: wrap;
    }
}
@media print {
    .article-key-figures__slides {
        flex-wrap: wrap;
    }
}
.article-key-figures__slides-wrap {
    margin-top: -20px;
}
@media screen and (max-width: 1023px) {
    .article-key-figures__slides-wrap {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
        position: relative;
        overflow: hidden;
    }
}
.article-key-figures__slide {
    width: calc((75vw / 2) - 7px);
    padding-right: 20px;
}
@media screen and (min-width: 768px) {
    .article-key-figures__slide {
        width: calc((75vw / 2) - 15px);
    }
}
@media screen and (min-width: 1024px) {
    .article-key-figures__slide {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-bottom: 20px;
    }
    .article-key-figures__slide p {
        max-width: 75%;
    }
}
@media print {
    .article-key-figures__slide {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 1023px) {
    .article-key-figures__controls {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
    }
}
@media screen and (min-width: 1024px) {
    .article-key-figures__controls {
        display: none;
    }
}
@media print {
    .article-key-figures__controls {
        display: none;
    }
}
.article-key-figures__number {
    display: block;
    padding-bottom: 5px;
    font-weight: 700;
    font-size: 1.666666666666667rem;
    font-family: 'Inter', sans-serif;
    color: #333745;
}
@media screen and (min-width: 768px) {
    .article-key-figures__number {
        font-size: 2.666666666666667rem;
    }
}
.article-quote {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #333745;
}
@media screen and (max-width: 767px) {
    .article-quote {
        padding: 0 20px;
    }
    .home .article-quote {
        padding: 0;
    }
}
.article-quote .quote-bg--gray {
    background-color: #6d6f72;
    padding: 60px 50px;
    margin-top: -20px;
    margin-bottom: 50px;
    position: relative;
}
@media screen and (min-width: 1024px) {
    .article-quote .quote-bg--gray {
        padding: 84px 110px;
        margin-top: -100px;
    }
}
.article-quote .quote-bg--gray .article-quote__quote {
    position: relative;
    color: #fff;
}
.article-quote .quote-bg--gray .article-quote__quote::before,
.article-quote .quote-bg--gray .article-quote__quote::after {
    color: #fff;
}
.article-quote .quote-bg--gray .article-quote__author,
.article-quote .quote-bg--gray .legend--article {
    color: #fff;
}
.article-quote .quote-bg--gray .article-quote__author {
    margin-top: 40px;
}
.article-quote--full {
    text-align: center;
}
@media screen and (min-width: 1024px) {
    .article-quote--full {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        margin: 0 auto;
    }
}
@media print {
    .article-quote--full {
        margin-top: 50px;
    }
    .article-quote--full .article-quote__quote:before {
        left: 0;
    }
    .article-quote--full .article-quote__quote:after {
        right: 0;
        bottom: -20px;
    }
}
.article-quote__quote {
    margin: 0;
    padding: 0;
    font-size: 1.222222222222222rem;
    position: relative;
}
@media screen and (min-width: 768px) {
    .article-quote__quote {
        font-size: 1.666666666666667rem;
    }
}
.article-quote__quote:before,
.article-quote__quote:after {
    display: block;
    height: 40px;
    width: 20px;
    font-size: 5.555555555555555rem;
    position: absolute;
}
.article-quote__quote:before {
    content: '\2018';
    margin-bottom: 0;
    left: -20px;
    top: -50px;
}
.article-quote__quote:after {
    content: '\2019';
    right: -20px;
    bottom: 0;
}
@media screen and (max-width: 767px) {
    .article-quote__quote:after {
        margin-right: -20px;
        margin-top: -20px;
        right: 0;
    }
}
@media screen and (min-width: 768px) {
    .article-quote__quote:after {
        right: -20px;
        bottom: -20px;
    }
}
.article-quote__quote--small {
    font-size: 1.111111111111111rem;
    margin-top: 40px;
}
.article-quote__quote--small:before,
.article-quote__quote--small:after {
    font-size: 3.333333333333333rem;
    height: 30px;
}
@media screen and (min-width: 768px) {
    .article-quote__quote--small {
        font-size: 1.666666666666667rem;
        line-height: 40px;
        padding: 0 1.5rem;
    }
    .article-quote__quote--small:before,
    .article-quote__quote--small:after {
        font-size: 4.444444444444445rem;
        line-height: 1.2;
    }
}
@media screen and (min-width: 1024px) {
    .article-quote__quote--small {
        padding: 20px 0 0 0;
    }
}
.article-quote__quote--small:before {
    margin-bottom: 0;
    top: -20px;
}
@media screen and (min-width: 768px) {
    .article-quote__quote--small:before {
        margin-bottom: 15px;
        margin-left: 0;
    }
}
@media screen and (min-width: 1024px) {
    .article-quote__quote--small:before {
        padding: 0;
    }
}
.article-quote__quote--small:after {
    margin-top: 0;
}
@media screen and (min-width: 768px) {
    .article-quote__quote--small:after {
        margin-top: -10px;
        margin-left: 100%;
    }
}
@media screen and (min-width: 1024px) {
    .article-quote__quote--small:after {
        right: -20px;
    }
}
.article-quote__quote--small + .article-quote__author {
    text-align: left;
}
@media screen and (min-width: 768px) {
    .article-quote__quote--small + .article-quote__author {
        margin-left: 1.5rem;
    }
}
@media screen and (min-width: 1024px) {
    .article-quote__quote--small + .article-quote__author {
        margin-left: 0;
    }
}
.article-quote__quote--small + .article-quote__author + .legend {
    text-align: left;
    letter-spacing: 2.2px;
}
@media screen and (min-width: 768px) {
    .article-quote__quote--small + .article-quote__author + .legend {
        margin-left: 1.5rem;
    }
}
@media screen and (min-width: 1024px) {
    .article-quote__quote--small + .article-quote__author + .legend {
        margin-left: 0;
    }
}
.article-quote__author {
    display: block;
    margin: 25px 0 5px;
    font-size: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.article-quote .legend {
    display: block;
    text-align: center;
}
.join_us {
    padding-top: 0 !important;
}
@media screen and (max-width: 1023px) {
    .join_us img {
        width: 100vw;
        margin-left: -3%;
        max-width: none;
    }
}
.article-featured {
    position: relative;
}
.article-featured ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
@media screen and (max-width: 767px) {
    .article-featured ul li:not(:last-child) {
        margin-bottom: 50px;
    }
}
.article-featured__txt {
    position: absolute;
    top: 0;
    transform: translateY(-60%);
    display: block;
    width: 100%;
    font-size: 8.333333333333334rem;
    text-align: center;
    color: #777;
    opacity: 0.08;
    font-weight: 700;
    pointer-events: none;
}
@media screen and (max-width: 767px) {
    .article-featured__txt {
        display: none;
    }
}
@media screen and (min-width: 1280px) {
    .article-featured__txt {
        font-size: 11.11111111111111rem;
    }
}
.article-featured__item {
    align-items: center;
    text-decoration: none;
}
.article-featured__item:hover .btn__wording {
    color: #f00;
}
@media screen and (min-width: 768px) {
    .article-featured__item {
        display: flex;
    }
}
.article-featured__item .btn {
    justify-content: flex-end;
}
.article-featured__item-link,
.article-featured__item-img {
    flex-shrink: 0;
}
@media screen and (min-width: 768px) {
    .article-featured__item-link,
    .article-featured__item-img {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 25%;
        flex-preferred-size: 25%;
        max-width: 25%;
    }
}
@media screen and (min-width: 1024px) {
    .article-featured__item-link,
    .article-featured__item-img {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 16.666666666666664%;
        flex-preferred-size: 16.666666666666664%;
        max-width: 16.666666666666664%;
    }
}
.article-featured__item-img {
    width: 100%;
    align-self: stretch;
}
.article-featured__item-txt {
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .article-featured__item-txt {
        margin: 15px 0;
    }
}
@media screen and (min-width: 768px) {
    .article-featured__item-txt {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        padding: 10px 10px 10px 15px;
    }
}
@media screen and (min-width: 1024px) {
    .article-featured__item-txt {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 16.666666666666664%;
        padding-left: 0;
    }
}
.article-featured__item-title {
    display: block;
    margin-bottom: 15px;
    font-size: 1.666666666666667rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333745;
}
@media print {
    .article-featured__txt,
    .article-featured__item-link {
        display: none;
    }
    .article-featured__item {
        display: flex;
    }
    .article-featured__item-img {
        width: 25%;
    }
    .article-featured__item-txt {
        width: 75%;
        padding-left: 20px;
    }
}
.article-video {
    position: relative;
}
.article-video.is-playing .article-video__poster,
.article-video.is-playing .article-video__play {
    oapcity: 0;
    visibility: hidden;
}
.article-video.is-playing .article-video__media:after {
    opacity: 0;
    visibility: hidden;
}
@media screen and (min-width: 1024px) {
    .article-video.is-playing .article-video__txt {
        opacity: 0;
        visibility: hidden;
    }
}
.article-video__media {
    position: relative;
    overflow: hidden;
    padding-top: 56.2%;
}
.article-video__media:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.6;
    transition: 0.3s all linear;
}
@media print {
    .article-video__media {
        margin-top: 20px;
    }
    .article-video__media:after {
        display: none;
    }
}
.article-video__poster {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all linear;
}
@media screen and (max-width: 1023px) {
    .article-video__txt {
        margin-bottom: 20px;
    }
}
@media screen and (min-width: 1024px) {
    .article-video__txt {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        margin-left: 16.666666666666664%;
        position: absolute;
        display: flex;
        align-items: flex-start;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 2;
        transition: 0.3s all linear;
    }
}
@media screen and (min-width: 1280px) {
    .article-video__txt {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 50%;
        flex-preferred-size: 50%;
        max-width: 50%;
        margin-left: 33.33333333333333%;
    }
}
.article-video__title {
    margin: 0 0 15px;
    font-size: 1.444444444444444rem;
    line-height: 33px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}
@media screen and (min-width: 768px) {
    .article-video__title {
        font-size: 1.666666666666667rem;
        line-height: 35px;
    }
}
@media screen and (min-width: 1024px) {
    .article-video__title {
        color: #fff;
    }
}
@media screen and (min-width: 1024px) {
    .article-video__desc {
        color: #fff;
        font-size: 0.833333333333333rem;
        line-height: 30px;
    }
}
.article-video__play {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #f00;
    transition: 0.3s all linear;
    border: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.article-video__play--mobile {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65px;
    height: 65px;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.article-video__play--mobile svg {
    width: 10px;
}
@media screen and (min-width: 1024px) {
    .article-video__play--mobile {
        display: none;
    }
}
.article-video__play--desktop {
    width: 100px;
    height: 100px;
}
@media screen and (max-width: 1023px) {
    .article-video__play--desktop {
        display: none;
    }
}
.article-video__play:hover {
    background-color: #fff;
}
.article-video__play:hover svg {
    fill: #f00;
}
.article-video__play:focus {
    outline: none;
}
.article-video__play svg {
    transition: 0.3s fill linear;
    fill: #fff;
}
@media screen and (min-width: 1024px) {
    .article-video__play {
        margin-right: 35px;
    }
}
@media screen and (min-width: 1280px) {
    .article-video__play {
        margin-right: 50px;
        margin-left: 45px;
    }
}
@media print {
    .article-video__play {
        -webkit-print-color-adjust: exact;
    }
    .article-video__play--desktop {
        display: none;
    }
}
.article-video__video {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.anchor-list {
    display: flex;
    flex-direction: row;
}
.anchor-list__inner {
    flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    margin: 0 auto;
    margin-bottom: 50px;
    padding: 0;
}
@media screen and (min-width: 768px) {
    .anchor-list__inner {
        flex-basis: 75%;
        flex-preferred-size: 75%;
        max-width: 75%;
    }
}
.anchor-list__inner ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
}
@media screen and (min-width: 1024px) {
    .anchor-list__inner ul {
        display: flex;
        flex-wrap: wrap;
    }
}
.anchor-list__inner ul li {
    display: block;
    width: 100%;
    margin: 0;
}
@media screen and (min-width: 1024px) {
    .anchor-list__inner ul li {
        width: 16.6px;
        width: calc(100% / 6);
        margin-top: 50px;
        display: flex;
    }
}
@media screen and (max-width: 767px) {
    .anchor-list__inner ul li:first-child a {
        padding-top: 0;
    }
}
.anchor-list__inner ul li a {
    display: block;
    position: relative;
    font-size: 1.111111111111111rem;
    line-height: 1.2;
    color: #333745;
    padding: 1.1rem 2rem 1.1rem 0.5rem;
}
@media screen and (min-width: 1024px) {
    .anchor-list__inner ul li a {
        font-size: 0.833333333333333rem;
    }
}
@media screen and (min-width: 1280px) {
    .anchor-list__inner ul li a {
        font-size: 1.111111111111111rem;
    }
}
.anchor-list__inner ul li a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 2px solid #f00;
    transition: transform 0.5s cubic-bezier(0.125, 0.75, 0.415, 1);
    transform-origin: 0 0;
    transform: scaleX(0);
}
.anchor-list__inner ul li a:hover {
    color: #f00;
}
.anchor-list__inner ul li a:hover::after {
    transform: scaleX(1);
}
@media screen and (min-width: 1024px) {
    .anchor-list__inner ul li a:hover::after {
        transform: scaleX(0.9);
    }
}
.wrapper-search-lang {
    position: relative;
    display: block;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .wrapper-search-lang {
        display: block;
    }
}
@media screen and (min-width: 1024px) {
    .wrapper-search-lang {
        display: flex;
    }
}
@media screen and (min-width: 1024px) {
    .lang-wrapper {
        display: flex;
    }
}
.lang {
    text-align: center;
    display: block;
    font-size: 0.611111111111111rem;
    font-family: 'Inter', sans-serif;
    margin-top: 30px;
}
@media screen and (min-width: 1024px) {
    .lang {
        margin-top: 0;
        text-align: left;
        margin-left: 30px;
    }
}
.lang__switch {
    display: inline-flex;
}
.lang__list:not(:last-child) {
    margin-right: 20px;
}
.lang__link {
    color: #aaa;
    text-decoration: none;
}
.lang__link-active {
    color: #777;
}
.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 {
    position: relative;
    overflow: hidden;
}
.tns-visually-hidden {
    position: absolute;
    left: -10000em;
}
.tns-transparent {
    opacity: 0;
    visibility: hidden;
}
.tns-fadeIn {
    opacity: 1;
    z-index: 0;
}
.tns-normal,
.tns-fadeOut {
    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;
}
.slider-slide {
    position: relative;
    overflow: hidden;
}
.slider-slide img {
    width: 100%;
}
.slider-container {
    margin-top: 40px;
    position: relative;
}
@media screen and (min-width: 1024px) {
    .slider-container {
        margin-top: 50px;
        margin-bottom: 90px;
    }
}
@media screen and (max-width: 1023px) {
    .slider-container {
        padding-top: 50px;
    }
}
.tns-controls {
    position: absolute;
}
.tns-controls button {
    display: block;
    border: none;
    background: none;
}
.tns-controls button path {
    transition: 0.3s all linear;
}
.tns-controls button:hover path {
    fill: #f00;
}
@media screen and (max-width: 1023px) {
    .tns-controls {
        display: flex;
        top: 0;
        left: 0;
    }
    .tns-controls button[data-controls='next'] {
        transform: rotate(90deg);
    }
    .tns-controls button[data-controls='prev'] {
        margin-right: 20px;
        transform: rotate(-90deg);
    }
}
@media screen and (min-width: 1024px) {
    .tns-controls {
        left: 0;
        top: 18.75vw;
        width: 12.5vw;
        transform: translate(-100%, -50%);
    }
    .tns-controls button {
        margin: auto;
    }
    .tns-controls button:not(:last-child) {
        margin-bottom: 25px;
    }
    .tns-controls button[data-controls='next'] {
        transform: rotate(180deg);
    }
}
.tns-nav {
    position: absolute;
}
.tns-nav button {
    display: block;
    padding: 0;
    border-radius: 0;
    border: 1px solid #333745;
    border-image: none;
    text-shadow: none;
    height: 10px;
    width: 10px;
    background-color: #333745;
}
.tns-nav .tns-nav-active {
    background-color: #fff;
}
@media screen and (max-width: 1023px) {
    .tns-nav {
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        height: 30px;
    }
    .tns-nav button {
        margin: 0 7px;
    }
    .tns-nav button:first-child {
        margin-left: 0;
    }
    .tns-nav button:last-child {
        margin-right: 0;
    }
}
@media screen and (min-width: 1024px) {
    .tns-nav {
        right: 0;
        top: 18.75vw;
        width: 12.5vw;
        transform: translate(100%, -50%);
    }
    .tns-nav button {
        margin: 12px auto;
    }
}
.vertical_slider-wrap {
    margin-bottom: 105px;
}
@media screen and (max-width: 1023px) {
    .vertical_slider-wrap .headline {
        margin-bottom: 40px;
    }
}
.vertical_slider .tns-outer {
    margin: 0 -10px;
}
@media screen and (min-width: 768px) {
    .vertical_slider .tns-outer {
        margin: 0 -20px;
    }
}
@media screen and (min-width: 1024px) {
    .vertical_slider .tns-outer {
        margin: 0;
    }
}
@media screen and (max-width: 1023px) {
    .slide__left {
        margin-bottom: 45px;
    }
}
@media screen and (min-width: 1024px) {
    .slide__left {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 66.66666666666666%;
        flex-preferred-size: 66.66666666666666%;
        max-width: 66.66666666666666%;
        padding-right: 15px;
    }
}
.slide__txt {
    display: block;
    text-decoration: none;
    padding: 30px 10px 0;
}
@media screen and (max-width: 1023px) {
    .slide__txt {
        margin-bottom: 25px;
    }
}
@media screen and (min-width: 768px) {
    .slide__txt {
        padding: 30px 20px 0;
    }
}
@media screen and (min-width: 1024px) {
    .slide__txt {
        display: flex;
        align-items: flex-start;
        padding: 35px 0 0;
    }
}
.slide__btn {
    display: flex;
    align-items: flex-end;
}
.slide__btn .btn__lines {
    top: 0;
}
@media screen and (min-width: 1024px) {
    .slide__btn {
        flex: 1 1 auto;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 33.33333333333333%;
        flex-preferred-size: 33.33333333333333%;
        max-width: 33.33333333333333%;
        margin-top: 45px;
    }
}
.slide__title {
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 2.222222222222222rem;
    font-weight: 700;
    line-height: 40px;
    display: block;
    color: #333745;
}
@media screen and (min-width: 768px) {
    .slide__title {
        font-size: 3.333333333333333rem;
        line-height: 70px;
    }
}
@media screen and (min-width: 1024px) {
    .slide__title {
        margin-bottom: 35px;
    }
}
.slide__desc {
    display: block;
    color: #333745;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.666666666666667rem;
    line-height: 35px;
}
@media screen and (min-width: 768px) {
    .slide__desc {
        font-size: 2rem;
    }
}
@media screen and (min-width: 768px) {
    .article-focus p {
        margin-bottom: 25px;
    }
}
.breadcrumb__nav {
    align-items: baseline !important;
}
.breadcrumb__notClickable {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    font-size: inherit;
    color: #000;
    height: 28px;
}

.contact .cs-select:before {
    background: transparent
        url(../modules/template/css/../images/menu-arrow.svg) top left no-repeat;
}

.more {
    display: none;
}

#myBtn {
    color: #777;
    border-color: #777;
}

#myBtn:hover {
    color: #777;
    border-color: #777;
}

.contact .form .form--press {
    display: block;
    width: 100%;
}

.buttonRgpd {
    border-style: none;
    background: none;
    text-decoration: underline;
    font-size: 0.611111111111111rem;
    line-height: 1.4em;
    letter-spacing: 1px;
    font-weight: normal;
    color: #aaa;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.rgpd {
    display: none;
}
.rgpdA {
    display: block;
}

.popin-press .form .cs-select:before {
    background: transparent
        url(../modules/template/css/../images/menu-arrow.svg) top left no-repeat;
}

.popin-intro {
    z-index: 51 !important;
    overflow: hidden;
}

.popin-intro .popin .alert__content .paragraph img {
    max-width: 100%;
    height: auto;
}

.popin-intro .popin .alert__content .paragraph {
    overflow-y: hidden !important;
}
.btn_lien {
    margin-top: 25px;
}
.sup-header__lang {
    text-transform: uppercase;
}

.home-video {
    width: 75%;
    margin: auto;
    margin-top: 100px;
}

.home-video .article-video__title {
    font-size: 2rem;
    line-height: 1em;
    font-family: 'Inter', sans-serif;
}

.home .home-video.article__section:not(:last-child) {
    padding-bottom: 50px;
}

.home-video .article-video__txt {
    cursor: pointer;
}

.main__section {
    margin-top: 100px;
}

.main__section .edito-trio__container.cta_zoom-container {
    display: flex;
    max-width: 75%;
    margin: 0 auto;
    color: #000;
    align-items: center;
    text-align: left;
}

.main__section .cta-citation__img-container {
    max-width: 50%;
    flex-basis: 50%;
}

.main__section .cta-citation__img-container img {
    width: 100%;
}

.main__section .cta-citation__title {
    margin-bottom: 40px;
    padding: 0;
    font-size: 2rem;
    line-height: 2.388888888888889rem;
    font-family:
        Playfair Display,
        serif;
}

.edito-trio__container.cta_zoom-container .cta-citation__txt {
    max-width: 37.5%;
    margin-left: 12.5%;
    margin-top: 0;
}

.edito-trio__container.cta_zoom-container
    .cta-citation__txt
    .link-wrapper
    .btn__lines {
    margin-left: 0;
}

.edito-trio__container.cta_zoom-container .edito-trio__edito-legend {
    color: #aaa;
    font-family: 'Inter', sans-serif;
    font-size: 0.722222222222222rem;
}

.edito-trio__container.cta_zoom-container .cta-citation__txt .btn__wording {
    margin-left: 20px;
}

.edito-trio__container.cta_zoom-container.reverse {
    flex-flow: row-reverse;
}

.edito-trio__container.cta_zoom-container.reverse .cta-citation__txt {
    margin-left: 0;
    margin-right: 12.5%;
}

@media screen and (max-width: 768px) {
    .home-video {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 50px;
    }

    .home-video .article-video {
        display: flex;
        flex-direction: column;
    }

    .home-video .article-video__txt {
        order: 2;
        margin-top: 20px;
    }

    .home-video .headline {
        margin-bottom: 20px;
    }

    .home .home-video.article__section:not(:last-child) {
        padding-bottom: 0;
    }

    .home-video .article-video__title {
        font-size: 1.4444444rem;
        line-height: 1em;
        font-family: 'Inter', sans-serif;
    }

    .main__section {
        margin-top: 25px;
    }

    .main__section .edito-trio__container.cta_zoom-container {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }

    .main__section .cta-citation__img-container {
        max-width: 100%;
        flex-basis: 100%;
        width: 100%;
    }

    .edito-trio__container.cta_zoom-container .cta-citation__txt {
        max-width: 100%;
        flex-basis: 100%;
        margin-left: 0;
    }

    .edito-trio__container.cta_zoom-container.reverse .cta-citation__txt {
        margin-right: 0;
    }

    .main__section
        .edito-trio__container.cta_zoom-container
        .cta-citation__title {
        font-size: 1.555555555555556rem;
        line-height: 1.888888888888889rem;
        margin-bottom: 24px;
    }

    .edito-trio__container.cta_zoom-container .edito-trio__edito-legend {
        font-size: 0.777777777777778rem;
    }

    .edito-trio__container.cta_zoom-container .cta-citation__txt .paragraph {
        font-size: 0.888888888888889rem;
        line-height: 1.333333333333333rem;
    }
}
.home-intro .btn:nth-child(3) {
    margin-top: 30px;
}
