@font-face {
	font-family: "Poppins";
	src: url("/font/Poppins-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("/font/Poppins-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

html {
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    font-family: inherit;
    cursor: default;
    -webkit-tap-highlight-color: transparent
}

a, body, div, footer, h1, h2, h3, h4, header, html, img, li, nav, p, span, ul, input {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
}

input {
    -webkit-appearance: none;
    outline: none;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #5d686e;
    background-color: #fff;
    overflow: hidden;
}

body.stop-scrolling {
    overflow: hidden;
}

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

a, div, footer, h1, h2, header, img, li, nav, p, span, ul {
    font-family: inherit;
}

li, ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a, img, picture, svg, video, input {
    display: block;
}

img, svg, video {
    width: 100%;
    height: auto;
    pointer-events: none;
}

html::-webkit-scrollbar {
    width: 0;
    background-color: transparent;
}

html {
	scrollbar-width: none;
}

::-moz-selection {
	color: #1b1c1e; 
	background-color: #00f29e;
}

::selection {
	color: #1b1c1e; 
	background-color: #00f29e;
}

h1, .h1,
h2, .h2,
h3, .h3,
.h0,
b, .bold {
    font-weight: 700;
}

.regular {
    font-weight: 400;
}

h1, .h1 {
    font-size: 7.3vw;
    line-height: 1.08em;
    letter-spacing: -0.026em;
}

h2, .h2 {
    font-size: 2.8vw;
    line-height: 1.11em;
    letter-spacing: -0.03em;
}

h3, .h3 {
    font-size: 2.18vw;
    line-height: 1.14em;
    letter-spacing: -0.028em;
}

.h0 {
    font-size: 12.5vw;
    line-height: 1em;
    letter-spacing: -0.05em;
}

p,
._404 a {
    font-size: 1.45vw;
    line-height: 1.6em;
}

.small, 
li {
    font-size: 0.93vw;
    line-height: 1.77em;
}

.overline {
    font-size: 0.73vw;
    line-height: 1em;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.overline.mixed {
    text-transform: none;
}

.link p,
.button p,
.footer-link,
#nav-button p,
.nav-link {
    font-size: 0.83vw;
    line-height: 1em;
    text-transform: uppercase;
}

.link p,
.button p {
    color: #00f29e;
}

.link p,
.button p,
#nav-button p,
.nav-link {
    font-weight: 700;
}

.footer-link {
    letter-spacing: 0.18em;
}

.link {
    overflow: hidden;
}

.link .arrow-c {
    position: relative;
    width: 0.75vw;
    margin: 0 0 0.08vw 0.5vw;
    overflow: hidden;
}

.link .arrow:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-150%);
}

@media screen and (hover: hover) {
    .link:hover .arrow {
        transition: transform 350ms cubic-bezier(.426,.158,.154,1);
    }

    .link:hover .arrow:first-child {
        transform: translateX(150%);
    }

    .link:hover .arrow:nth-child(2) {
        transform: translateX(0%);
    }
}

.button {
    cursor: pointer;
}

.button > :first-child {
    position: relative;
    padding: 1.6vw 2.18vw 1.5vw;
    background: #1b1f23;
    overflow: hidden;
}

.button p {
    position: relative;
    transition: color 350ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
    z-index: 2;
}

.button-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.button-bg::before,
.button-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00f29e;
}

.button-bg::before {
    opacity: 0;
    transform: translateX(-101%);
}

.button-bg::after {
    transform: translateX(101%);
    transition: transform 500ms cubic-bezier(.426,.158,.154,1);
}

.button > :nth-child(2) {
    width: 3.33vw;
    background: #00f29e;
}

.button .arrow-c {
    position: relative;
    width: 1.14vw;
    overflow: hidden;
}

.button .arrow:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-150%);
}

@media screen and (hover: hover) {
    .button:hover p {
        color: #1b1f23;
    }
    
    .button:hover .button-bg {
        transform: translateX(0%);
    }

    .button:hover .arrow {
        transition: transform 500ms cubic-bezier(.426,.158,.154,1);
    }

    .button:hover .arrow:first-child {
        transform: translateY(150%);
    }

    .button:hover .arrow:nth-child(2) {
        transform: translateY(0%);
    }

    .button:hover .button-bg::before {
        opacity: 1;
        transform: translateX(0%);
        transition: transform 500ms cubic-bezier(.426,.158,.154,1);
    }
    
    .button:hover .button-bg:after {
        opacity: 0;
        transform: translateX(0%);
        transition: none;
    }
}

.green {
    color: #00f29e;
}

.white {
    color: #fff;
}

h1 .outer, 
.h1 .outer,
h1 .outer-w,
.h1 .outer-w {
	margin-bottom: -0.1em;
}

h1 .inner, 
.h1 .inner,
h1 .inner-w,
.h1 .inner-w {
	padding-bottom: 0.1em;
}

#app {
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#app.smooth-scroll {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

#nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6.5vw;
    background: #1b1f23;
    color: #fff;
    padding-left: 3.6vw;
    transition: background-color 500ms cubic-bezier(.426,.158,.154,1), color 500ms cubic-bezier(.426,.158,.154,1);
    z-index: 4;
}

#nav.fs {
    background: none;
    color: #1b1f23;
}

#nav.fs.inverted {
    color: #fff;
}

#nav.fs #logo :first-child,
#nav.fs.inverted #logo :last-child {
    opacity: 0;
}

#nav.fs #logo :last-child,
#nav.fs.inverted #logo :first-child {
    opacity: 1;
}



#logo {
    position: relative;
    width: 14vw;
    flex-shrink: 0;
    margin-right: auto;
}

#logo img {
    transition: opacity 500ms cubic-bezier(.426,.158,.154,1);
}

#logo :last-child {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

#link-w {
    margin: 0 2vw 0 auto;
}

#link-w-m {
    display: none;
}

#nav-toggle {
    display: none;
}

.nav-link {
    position: relative;
    margin: 0 1.2vw;
    padding: 1vw 0;
    cursor: pointer;
}

.nav-link.mixed {
    text-transform: none;
}

.nav-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    overflow: hidden;
}

.nav-line::before,
.nav-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00f29e;
}

.nav-line::before {
    opacity: 0;
    transform: translateX(-101%);
}

.nav-line::after {
    transform: translateX(101%);
    transition: transform 300ms cubic-bezier(.426,.158,.154,1);
}

@media screen and (hover: hover) {
    .nav-link:hover .nav-line::before {
        opacity: 1;
        transform: translateX(0%);
        transition: transform 300ms cubic-bezier(.426,.158,.154,1);
    }
    
    .nav-link:hover .nav-line:after {
        opacity: 0;
        transform: translateX(0%);
        transition: none;
    }
}

#nav .social {
    margin: 0 3.4vw 0 auto;
}

.social-icon {
    position: relative;
}

.social-icon svg {
    position: relative;
    z-index: 2;
}

.social-inner {
    transition: fill 300ms cubic-bezier(.426,.158,.154,1);
}

.social-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.7vw;
    height: 1.7vw;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.social-hover::before,
.social-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00f29e;
    border-radius: 50%;
}

.social-hover::before {
    opacity: 0;
    transform: translateY(101%);
}

.social-hover::after {
    transform: translateY(-101%);
    transition: transform 300ms cubic-bezier(.426,.158,.154,1);
}

@media screen and (hover: hover) {
    .social-icon:hover .social-hover::before {
        opacity: 1;
        transform: translateY(0%);
        transition: transform 300ms cubic-bezier(.426,.158,.154,1);
    }
    
    .social-icon:hover .social-hover:after {
        opacity: 0;
        transform: translateY(0%);
        transition: none;
    }

    .social-icon:hover .social-inner {
        fill: #1b1f23;
    }
}

#nav-button {
    width: 15.2vw;
    height: 100%;
    background: #00f29e;
    color: #1b1f23;
}

#grid {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    padding: 0 10vw;
    pointer-events: none;
    z-index: 30;
}

#grid.active {
    display: flex;
}

#grid .column {
    width: 5.2vw;
    background-color: #ff3300;
	opacity: 0.2;
}

#grid .column:not(:last-child) {
    margin: 0 1.6vw 0 0;
}

#background-w {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    overflow: hidden;
    pointer-events: none;
}

#background {
    position: absolute;
    background-image: url('/assets/d/global/grain.png');
    height: 300%;
    width: 300%;
    left: -100%;
    top: -100%;
    animation-name: grained;
    animation-iteration-count: infinite;
    animation-duration: 0.5s;
    animation-timing-function: steps(20);
}

@keyframes grained {
    0% {
        transform: translate(-10%, 10%);
    }
    10% {
        transform: translate(-25%, 0%);
    }
    20% {
        transform: translate(-30%, 10%);
    }
    30% {
        transform: translate(-30%, 30%);
    }
    40% {
        transform: translate(-20%, 20%);
    }
    50% {
        transform: translate(-15%, 10%);
    }
    60% {
        transform: translate(-20%, 20%);
    }
    70% {
        transform: translate(-5%, 20%);
    }
    80% {
        transform: translate(-25%, 5%);
    }
    90% {
        transform: translate(-30%, 25%);
    }
    100% {
        transform: translate(-10%, 10%);
    }
}

#cb {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 7;
    pointer-events: none;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1b1f23;
    z-index: 5;
}

#transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1b1f23;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}

#wrapper {
    position: relative;
    overflow: hidden;
    z-index: 2;
}

#wrapper.smooth-scroll {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.inlay {
    position: relative;
    will-change: transform;
}

.inlay.archive {
    height: 100%;
}

section {
    position: relative;
}

.full {
    display: flex;
    height: 100%;
    min-height: 100vh;
}

main .full {
    min-height: calc(100vh - 6.5vw);
}

section.dark {
    background: #1b1f23;
    color: #00f29e;
}

section.blue {
    background: #272b2f;
    color: #00f29e;
}

section.darker {
    background: #16191c;
    color: #00f29e;
}

.section-inlay {
    position: relative;
	width: 100%;
	padding: 6vw 10vw;
    z-index: 2;
}

.styleguide {
    padding: 10vw;
}

.styleguide * {
    margin: 0 0 2vw;
}

.styleguide .width {
    width: 45vw;
}

/*
    GRID CLASSES
*/

.header, .header-sub {
    position: relative;
    width: 100%;
    margin-top: 6.5vw;
}

.header .fg {
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}

.header .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-bg {
    position: absolute;
    top: -1%;
    left: 0;
    width: 100%;
    height: 102%;
    z-index: 0;
    overflow: hidden;
}

.header .copy {
    position: relative;
    width: 44vw;
    z-index: 3;
}

.bg-image,
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-image {
    z-index: 1;
}

.header .bg-image {
    z-index: 0;
}

.bg-video {
    z-index: 1;
}

.circle-link {
    position: relative;
    width: 12.9vw;
    height: 12.9vw;
    border-radius: 50%;
}

.circle-inlay {
    position: relative;
    width: 7.6vw;
    height: 7.6vw;
    background: #1b1f23;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.circle-inlay img {
    width: 1.5vw;
}

.circle-image-w {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.circle-link > p,
.circle-link > .link {
    position: relative;
    font-size: 1.45vw;
    line-height: 1.07em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    width: 7.6vw;
    z-index: 2;
}

.circle-area {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotating {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}

.circle-image.play,
.signature-circle.play {
    animation: rotating 8s linear infinite;
}

.header .circle-link {
    position: absolute;
    top: 50%;
    right: 9.1vw;
    transform: translateY(-50%);
    z-index: 2;
}

.outline-w {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.header .outline {
    position: absolute;
    width: 68.1vw;
}

.header .outline.top {
    top: -9vw;
    left: 41vw;
}

.header .outline.bottom {
    bottom: -5vw;
    left: 31.8vw;
}

.header-sub .section-inlay {
    height: 100%;
}

.header-sub .copy {
    position: relative;
    width: 46vw;
    z-index: 3;
}

.header-sub .outline {
    position: absolute;
    width: 70vw;
}

.header-sub .outline.top {
    top: -6vw;
    left: 41vw;
}

.header-sub .outline.bottom {
    bottom: -3vw;
    left: 31.8vw;
}

.header-sub .circle-link {
    position: absolute;
    top: 40%;
    right: 9.1vw;
    transform: translateY(-50%);
    z-index: 3;
}

.gr-1 {
    padding-right: 0;
}

.gr-1 .hide {
    opacity: 0;
}

.gr-1 .h1 {
    width: 52.8vw;
}

.gr-1 .signature {
    position: relative;
    width: 18.8vw;
    height: 18.8vw;
    margin-left: 8.4vw;
}

.gr-1 .signature-outline {
    width: 8.4vw;
}

.gr-1 .signature > :first-child {
    position: relative;
}

.gr-1 .signature-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

.signature-circle-w {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.gr-11 {
    padding: 0;
    color: #00f29e;
}

.gr-11 h2 {
    text-align: center;
    width: 44vw;
    margin: 0 auto 5vw;
}

.info-w {
    height: 33.03vw;
}

.info {
    position: relative;
    width: 33.33%;
    overflow: hidden;
}

.info:first-child {
    background: #16191c;
}

.info:nth-child(2) {
    background: #1b1f23;
}

.info:nth-child(3) {
    background: #272b2f;
}

.info-overline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.7vw 2.7vw 0;
}

.info-overline p {
    margin: 0 0 1.27vw;
}

.info-line {
    width: 5.4vw;
    height: 2px;
    overflow: hidden;
}

.line-inlay {
    width: 100%;
    height: 100%;
    background: #00f29e;
}

.info-reveal {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform-origin: top;
    z-index: 3;
}

.info-w .advantage {
    width: 26.5vw;
}

.info-w .adifo {
    width: 16.6vw;
}

.info-w .china {
    width: 17vw;
}

.info-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 2.7vw 2.7vw;
}

.info-underline .link:not(:last-child) {
    margin: 0 0 1vw;
}

.graphic-c {
    position: relative;
    margin-right: -10vw;
    overflow: hidden;
    z-index: 1;
}

.gr-2 .graphic-c {
    margin-bottom: 23vw;
}

.chapter {
    position: relative;
    width: 5.2vw;
    padding: 0.8vw 0 0.7vw;
    flex-shrink: 0;
    overflow: hidden;
}

.chapter.green {
    color: #00f29e;
}

.chapter.white {
    color: #fff;
}

.chapter p {
    font-size: 1.25vw;
    line-height: 1em;
    font-weight: 700;
}

.chapter-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.26vw;
}

.chapter-line:first-child {
    top: 0;
}

.chapter-line:last-child {
    bottom: 0;
}

.chapter.green .chapter-line {
    background: #00f29e;
}

.chapter.white .chapter-line {
    background: #fff;
}

.mask {
    overflow: hidden;
}

.gr-2 .outline {
    width: 123vw;
    margin-left: 8.4vw;
    flex-shrink: 0;
}

.gr-2 {
    padding-top: 10vw;
}

.gr-2 .copy {
    position: relative;
    margin: 0 auto 9.3vw;
    text-align: center;
    z-index: 3;
}

.gr-2 h2 {
    margin: 0 0 5vw
}

.gr-2 .copy p {
    width: 39.2vw;
    margin: 0 auto 2vw;
}

.gr-2 .copy p:last-of-type {
    margin-bottom: 8.5vw;
}

.gr-2 .circle-link {
    margin: 0 auto;
}

.timeline {
    position: relative;
    z-index: 3;
}

.timeline p {
    font-size: 2.5vw;
    line-height: 1.04em;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #00f29e;
}

.timeline-line {
    flex: 1 1 auto;
    margin: 0 1.5vw;
    height: 0.2vw;
    background: #00f29e;
    transform-origin: 0% 50%;
}

.timeline .flex-s-c {
    margin: 0 0 2vw;
}

.timeline > p {
    width: 27vw;
    margin: 0 auto;
    text-align: center;
}

.image-comp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.gr-2 .image-comp > * {
    position: absolute;
    width: 12vw;
}

.image-comp img {
    --parallax: 4vw;
}

.gr-2 .image-comp :first-child {
    top: 22.1vw;
    right: 23.6vw;
}

.gr-2 .image-comp :nth-child(2) {
    top: 40.5vw;
    left: 16.8vw;
}

.gr-2 .image-comp :nth-child(3) {
    top: 66.5vw;
    right: 10vw;
}

.gr-2 .image-comp :nth-child(4) {
    top: 85.9vw;
    left: 10vw;
}

.gr-2 .image-comp :nth-child(5) {
    top: 115vw;
    left: 16.8vw;
}

.gr-2 .image-comp :nth-child(6) {
    top: 120vw;
    right: 16.8vw;
}

.gr-3,
.gr-6,
.gr-14 {
    margin: -2px 0;
}

.gr-3 .copy {
    position: relative;
    width: 62vw;
    z-index: 3;
}

.gr-3 .chapter {
    margin: 0 auto 1.5vw;
}

.gr-3 h2 {
    text-align: center;
}

.gr-3 .outline {
    position: absolute;
    width: 90vw;
    z-index: 2;
}

.gr-3 .outline.top {
    top: -4vw;
    left: 55vw;
}

.gr-3 .outline.bottom {
    bottom: -6vw;
    left: 5vw;
}

.gr-3 .image-c,
.gr-6 .image-c,
.gr-14 .image-c,
.header-sub .image-c {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.gr-3 .bg-image,
.gr-6 .bg-image,
.gr-14 .bg-image,
.header-sub .bg-image {
    top: -8vw;
    bottom: -8vw;
    height: calc(100% + 16vw);
    --parallax: -8vw;
}

.gr-4 {
    padding: 6vw 16.8vw;
}

.overline-line {
    width: 5.2vw;
    height: 2px;
    background: #00f29e;
    margin-right: 1.6vw;
    flex-shrink: 0;
}

.overline-w {
    margin: 0 0 2vw;
}

.overline {
    white-space: nowrap;
}

.gr-4 h2 {
    width: 54.4vw;
    margin: 0 0 3vw;
}

.gr-5 {
    padding: 8vw 10vw 8vw 16.8vw;
}

.gr-5 .copy {
    width: 25.6vw;
}

.gr-5 h2 {
    margin: 0 0 1.75vw;
}

.gr-5 > div > .small {
    margin: 0 0 3.75vw;
}

.icon-list {
    position: relative;
}

.icon-list:not(:last-child) {
    margin: 0 0 5.2vw;
}

.list-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.15vw;
    background: #00f29e;
    transform-origin: 0% 50%;
}

.list-line.top {
    top: 0;
}

.list-line.bottom {
    bottom: 0;
}

.gr-5 ul,
.gr-18 ul {
    padding: 2.7vw 2.7vw 2.7vw 0;
}

.gr-5 li:not(:last-child),
.gr-18 li:not(:last-child) {
    margin: 0 0 1.25vw;
}

.list-icon-w {
    position: relative;
    width: 5.2vw;
    flex-shrink: 0;
}

.list-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}

.gr-5 li h3,
.gr-18 li h3 {
    font-size: 0.93vw;
    line-height: 1.55em;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 400;
}


.gr-5 li h3 {
    margin-left: 1.6vw;
}

.gr-5 .image-w {
    position: relative;
    margin-left: 8.4vw;
}

.gr-5 .image {
    position: relative;
    width: 32.4vw;
    z-index: 2;
}

.gr-5 .image-c {
    position: absolute;
}

.gr-5 .image-c:nth-child(2) {
    width: 35.6vw;
    left: 13.6vw;
    top: -12vw;
    z-index: 1;
}

.gr-5 .image-c:nth-child(2) img {
    --parallax: 1.5vw;
}

.gr-5 .image-c:nth-child(3) {
    width: 18.8vw;
    right: -6.8vw;
    bottom: -6vw;
    z-index: 3;
}

.gr-5 .image-c:nth-child(3) img {
    --parallax: 4vw;
}

.gr-3,
.gr-6 .full .section-inlay {
    padding: 10vw;
}

.gr-6 .copy {
    position: relative;
    width: 48vw;
    z-index: 3;
}

.gr-6 .chapter {
    margin: 0 0 1.5vw;
}

.gr-6 .outline {
    position: absolute;
    width: 66vw;
    z-index: 2;
}

.gr-6 .outline.top {
    top: -8vw;
    left: 43vw;
}

.gr-6 .outline.bottom {
    bottom: -4vw;
    left: 16.8vw;
}

.gr-6 > .section-inlay {
    padding: 4vw 10vw 2vw;
}

.gr-6 > .section-inlay p {
    text-align: center;
    width: 33.5vw;
    margin: 0 auto;
}

.gr-7 {
    padding-left: 16.8vw;
    padding-right: 0;
}

.gr-7 .copy {
    width: 32.4vw;
}

.gr-7 .image-w {
    position: relative;
    margin-left: 13.6vw;
}

.gr-7 h2 {
    margin: 0 0 1.75vw;
}

.gr-7 .copy > p {
    margin: 0 0 5vw;
}

.gr-7 .adifo {
    width: 17.5vw;
}

.gr-7 .image {
    position: relative;
    width: 33.2vw;
    z-index: 2;
}

.gr-7 .image-c:nth-child(2) img {
    --parallax: 1.5vw;
}

.gr-7 .image-c:nth-child(3) img {
    --parallax: 4vw;
}

.gr-7 .image-c {
    position: absolute;
    width: 22vw;
}

.gr-7 .image-c:nth-child(2) {
    top: -14vw;
    left: 15.2vw;
    z-index: 1;
}

.gr-7 .image-c:nth-child(3) {
    bottom: -10vw;
    left: -6.8vw;
    z-index: 3;
}

.gr-8 .graphic-c {
    margin-bottom: 12vw;
}

.gr-8 .outline {
    width: 150vw;
    margin-left: 1.6vw;
    flex-shrink: 0;
}

.gr-8 .copy {
    position: relative;
    text-align: center;
    margin: 0 auto;
    width: 66.4vw;
    z-index: 3;
}

.signature-long {
    position: relative;
}

.signature-long img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
}

.gr-8 .signature-long {
    width: 17.4vw;
    margin: 0 auto 2.5vw;
}

.gr-8 h2 {
    margin: 0 0 5vw;
}

.gr-8 .copy p {
    width: 34vw;
    margin: 0 auto 5.5vw;
}

.gr-8 .circle-link {
    margin: 0 auto;
}

.gr-8 .image-comp > * {
    position: absolute;
    width: 12vw;
}

.gr-8 .image-comp :first-child {
    top: 19vw;
    left: 44vw;
}

.gr-8 .image-comp :nth-child(2) {
    top: 40vw;
    left: 10vw;
}

.gr-8 .image-comp :nth-child(3) {
    top: 46vw;
    right: 10vw;
}

.gr-8 .image-comp :nth-child(4) {
    top: 83vw;
    left: 16.8vw;
}

.gr-8 .image-comp :nth-child(5) {
    top: 92vw;
    right: 10vw;
}

.gr-9 {
    padding: 6vw 0 6vw 16.8vw;
}

.gr-9 > .flex-s-s {
    margin: 0 0 6.6vw;
}

.gr-9 .copy {
    width: 32.4vw;
}

.gr-9 > .flex-s-s > :nth-child(2) {
    width: 42.4vw;
    margin-left: 8.4vw;
}

.gr-9 .chapter {
    margin: 0 0 4.5vw;
}

.gr-9 h2 {
    margin: 0 0 1.75vw;
}

.drag-w {
    margin-left: -16.8vw;
    cursor: grab;
    overflow: hidden;
}

.drag {
    position: relative;
    min-width: 100%;
    padding: 0 10vw 0 16.8vw;
    z-index: 1;
}

.drag, .news-item {
    flex-shrink: 0;
}

.news-item {
    position: relative;
}

.news-item .image-w {
    position: relative;
}

.news-item .image {
    position: relative;
    z-index: 1;
}

.news-item .link {
    position: absolute;
    bottom: 0;
    left: 0;
}

.news-item {
    width: 25.6vw;
    padding: 0 0 3vw 0;
}

.gr-9 .news-item:not(:last-child) {
    margin-right: 1.6vw;
}

.gr-9 .news-item .image-w {
    position: relative;
    margin: 0 0 2vw;
}

.gr-9 .news-item h3 {
    margin: 0 0 1.25vw;
}

.drag-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 6.6vw;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

.gr-10 {
    padding: 6vw 30vw;
    text-align: center;
}

.gr-10 .circle-link {
    margin: 0 auto 4vw;
}

.gr-12 {
    padding-bottom: 14vw;
}

.gr-12 .heading {
    width: 25.6vw;
    flex-shrink: 0;
}

.gr-12 .copy {
    flex: 1 1 auto;
    margin-left: 1.6vw;
}

.gr-12 ul {
    width: 50%;
    padding-right: 3.4vw;
}

.gr-12 li {
    position: relative;
}

.gr-12 li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 1.9vw;
    left: 0;
    width: 1.4vw;
    height: 4px;
    background: #fff;
}

.gr-12 li:not(:last-child) {
    padding: 0 0 3vw;
}

.gr-12 img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28.8vw;
}

.gr-13 {
    padding: 10vw 10vw 10vw 16.8vw;
}

.gr-13 .copy {
    width: 30.3vw;
}

.gr-13 .image-w {
    position: relative;
    margin-left: auto;
}

.gr-13 h2 {
    margin: 0 0 1.75vw;
}

.gr-13 .copy > .small:not(:last-of-type) {
    margin: 0 0 1.5vw;
}

.gr-13 .copy > .small:last-of-type {
    margin: 0 0 3vw;
}

.gr-13 .coachad {
    width: 8.7vw;
}

.gr-13 .circle-link {
    width: 12vw;
    height: 12vw;
}

.gr-13 .image {
    position: relative;
    width: 25.6vw;
    z-index: 2;
}

.gr-13 .image-c:nth-child(2) img,
.gr-13 .image-c:nth-child(3) img {
    --parallax: 1.5vw;
}

.gr-13 .image-c {
    position: absolute;
    width: 22vw;
}

.gr-13 .image-c:nth-child(2) {
    top: -16vw;
    left: 13.6vw;
    z-index: 1;
}

.gr-13 .image-c:nth-child(3) {
    bottom: -13vw;
    left: -6.8vw;
    z-index: 3;
}

.gr-14 {
    padding: 8vw 10vw;
}

.gr-14 .chapter {
    margin: 0 0 1.5vw;
}

.gr-14 .copy {
    position: relative;
    width: 66vw;
    z-index: 3;
}

.gr-14 .outline {
    position: absolute;
    width: 66vw;
    z-index: 2;
}

.gr-14 .outline.top {
    top: -8vw;
    left: -5vw;
}

.gr-14 .outline.bottom {
    bottom: -8vw;
    right: -8vw;
}

.gr-15 {
    padding: 12.5vw 10vw 10vw;
}

.gr-15 .copy {
    position: relative;
    width: 32.4vw;
    z-index: 3;
}

.gr-15 .circle-link {
    margin: 14vw 0 0 auto;
    z-index: 2;
}

.gr-15 .outline {
    position: absolute;
    z-index: 1;
}

.gr-15 .outline.visions.top {
    top: 2.5vw;
    right: -4vw;
    width: 46vw;
}

.gr-15 .outline.visions.bottom {
    bottom: 0;
    left: -6vw;
    width: 72vw;
}

.gr-15 .outline.news {
    width: 56vw;
}

.gr-15 .outline.news.top {
    top: 2.5vw;
    right: -10vw;
}

.gr-15 .outline.news.bottom {
    bottom: 0;
    left: -6vw;
}

.gr-16 .news-item:nth-child(3n + 2),
.gr-16 .news-item:nth-child(3n) {
    margin-left: 1.6vw;
}

.gr-16 .news-item:not(:nth-child(-n + 3)) {
    margin-top: 4vw;
}

.gr-16 .news-item .image-w {
    margin: 0 0 1.5vw;
}

.gr-16 .news-item h3 {
    margin: 0 0 1vw;
}

.gr-17 {
    padding: 12.5vw 10vw 8vw;
}

.gr-17 .image-w {
    position: relative;
    width: 32.4vw;
    flex-shrink: 0;
    z-index: 2;
}

.gr-17 .copy {
    position: relative;
    margin: 2vw 0 0 8.4vw;
    z-index: 2;
}

.gr-17 h1 {
    margin: 0 0 4vw;
}

.gr-17 .outline {
    position: absolute;
    z-index: 1;
}

.gr-17 .outline.visions.top {
    top: 4.5vw;
    left: -4vw;
    width: 46vw;
}

.gr-17 .outline.visions.bottom {
    bottom: 2vw;
    right: -1vw;
    width: 72vw;
}

.gr-17 .outline.news {
    width: 56vw;
}

.gr-17 .outline.news.top {
    top: 4.5vw;
    left: -8vw;
}

.gr-17 .outline.news.bottom {
    bottom: 2vw;
    right: -1vw;
}

.gr-18 {
    padding: 6vw 0 10vw 16.8vw;
}

.gr-18 .copy {
    width: 32.4vw;
}

.gr-18 h2 {
    margin: 0 0 2vw;
}

.gr-18 .small:not(:last-child) {
    margin: 0 0 3vw;
}

.gr-18 .copy > img {
    width: 20.4vw;
}

.gr-18 .image-w {
    position: relative;
    width: 23.6vw;
    margin-left: auto;
}

.gr-18 .image-c {
    position: absolute;
    bottom: -5vw;
    left: -18.8vw;
    width: 25.6vw;
}

.gr-18 .image-c img {
    --parallax: 4vw;
}

.gr-18 h3 {
    color: #00f29e;
    margin: 0 0 0.4vw;
}

.gr-18 .content {
    margin-left: 1.6vw;
}

.gr-20 {
    padding: 4vw 16.8vw 14vw;
    overflow: hidden;
}

.gr-20 h2 {
    text-align: center;
    margin: 0 0 4vw;
}

.gr-20 h2, 
.news-w {
    position: relative;
    z-index: 2;
}

.news-c:not(:last-child) {
    margin: 0 0 4.79vw;
}

.news-c .image-w {
    position: relative;
    width: 20.4vw;
    flex-shrink: 0;
}

.news-c .image-w img {
    position: relative;
    z-index: 1;
}

.news-content {
    flex: 1 1 auto;
    padding: 2.86vw 5.2vw 2.86vw 5.2vw;
}

.news-content .overline {
    margin: 0 0 0.8vw;
}

.news-content h3 {
    margin: 0 0 1.25vw;
}

.gr-20 .outline {
    position: absolute;
    z-index: 1;
    width: 56vw;
}

.gr-20 .outline.bottom {
    bottom: -5vw;
    left: -5vw;
}

.gr-21 > :first-child {
    width: 18.8vw;
}

.gr-21 > :nth-child(2) {
    width: 46vw;
    margin-left: auto;
    padding: 3.5vw 2vw;
    border-top: 0.15vw solid #00f29e;
    border-bottom: 0.15vw solid #00f29e;
}

.partner:nth-child(n+4) {
    margin-top: 4vw;
}

.partner:not(:last-child):not(:nth-child(3)) {
    margin-right: 5vw;
}

.partner.adidas {
    width: 5.4vw;
}

.partner.bdo {
    width: 3.2vw;
}

.partner.fenrir {
    width: 11.4vw;
}

.partner.gornylaw {
    width: 10.4vw;
}

.partner.milk {
    width: 6vw;
}

.footer {
    padding-bottom: 3vw;
}

.footer-link:not(:first-child) {
    margin-left: 3vw;
}

.social-icon {
    width: 2.2vw;
}

.social-icon:not(:first-child) {
    margin-left: 1vw;
}

.archive-w {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: background-color 650ms cubic-bezier(.426,.158,.154,1), color 300ms cubic-bezier(.426,.158,.154,1);
}

.archive-w {
    color: #1b1f23;
}

.archive-w.dark {
    color: #fff;
}

.archive-logo {
    position: absolute;
    top: 3vh;
    left: 4vh;
    width: 24.8vh;
    z-index: 4;
}

.archive-w .back-link {
    position: absolute;
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1vh 0.6vh;
	color: #1b1f23;
	transition: color 300ms cubic-bezier(.426,.158,.154,1);
    z-index: 4;
}

.archive-w.dark .back-link {
	color: #fff;
}

.mode-switch {
    position: absolute;
    bottom: 3vh;
    right: 5vh;
    cursor: pointer;
    z-index: 4;
}

.mode-name-w {
    position: relative;
    height: 20px;
    margin-right: 6px;
    overflow: hidden;
}

.mode-name-c {
    text-align: right;
    transition: transform 350ms cubic-bezier(.426,.158,.154,1);
}

.archive-w.dark .mode-name-c {
    transform: translateY(-50%);
}

.mode-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-left: 10px;
    transition: background-color 300ms cubic-bezier(.426,.158,.154,1);
}

.archive-w .mode-circle {
    background: #1b1f23;
}

.archive-w.dark .mode-circle {
    background: #fff;
}

.archive-w .scroll {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translate(-50%);
    z-index: 4;
}

.archive-w p,
.archive-w a {
    font-size: 20px;
    line-height: 1em;
    text-transform: uppercase;
}

.archive-w .back-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00f29e;
}

.archive-c {
    position: relative;
    flex-shrink: 0;
    padding: 0 21vh;
    z-index: 3;
    will-change: transform;
}

.archive-item {
    flex-shrink: 0;
    height: 21.43vh;
    overflow: hidden;
    cursor: pointer;
}

.archive-item:nth-child(6n + 1) {
    margin: 32vh -5vh 0 0;
}

.archive-item:nth-child(6n + 2) {
    margin: 0 33vh 48vh 0;
}

.archive-item:nth-child(6n + 3) {
    margin: 0 29vh 0 0;
}

.archive-item:nth-child(6n + 4) {
    margin: 0 0 23vh 0;
}

.archive-item:nth-child(6n + 5) {
    margin: 48vh 15vh 0 0;
}

.archive-item:nth-child(6n) {
    margin: 0 22vh 36vh 0;
}

.archive-item:last-child {
    margin-right: 0;
}

.archive-item img {
    width: auto;
    height: 100%;
}

.progress-w {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 1;
}

.progress {
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: 0% 50%;
    background: #00f29e;
}

.archive-w .outline {
    position: absolute;
    width: 170vh;
    z-index: 1;
}

.archive-w .outline.top {
    top: -12vh;
    right: -86vh;
}

.archive-w .outline.bottom {
    bottom: 0;
    left: -115vh;
}

#detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    overflow: hidden;
    z-index: 5;
}

#detail-scroll {
    position: relative;
    width: 25.6vw;
    margin: auto;
    padding: 4vh 0;
    z-index: 2;
}

.detail-c {
    color: #5d686e;
    width: 100%;
}

.archive-w.dark .detail-c {
    color: #fff;
}

.detail-image {
    position: relative;
    margin: 0 0 1vw;
}

#detail-load {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c0c0c0;
    z-index: 2;
}

#detail-load.loaded {
    opacity: 0;
    transition: opacity 500ms cubic-bezier(.426,.158,.154,1);
}

.detail-c .copy {
    font-size: 1vw;
    line-height: 1.4em;
    text-transform: none;
}

#detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.archive-w.dark #detail-bg {
    background: rgba(0, 0, 0, 0.7);
}

.legal-header {
    padding: 10vw 16.8vw 0;
}

.legal-header h1,
.legal-item h3,
.legal-header .small:not(:last-child),
.legal-item .small:not(:last-child) {
    margin: 0 0 1.2vw;
}

.legal-header h1,
.legal-item h3 {
    color: #1b1f23;
}

.legal-header p > a,
.legal-item p > a {
    color: #00f29e;
    display: inline;
}

.legal-inlay {
    padding: 3vw 16.8vw;
}

.legal-item {
    margin: 0 0 3vw;
}

.legal-date {
    color: #8d8d8d;
}

/*
    MISC CLASSES
*/

span.outer {
    display: inline-flex;
    overflow: hidden;
} 

span.inner {
	display: block;
	white-space: nowrap;
    will-change: transform;
}

span.inner-c {
    display: inline-block;
    white-space: pre;
    will-change: transform;
}

/*
    FLEX CLASSES
*/

.flex {
    display: flex;
}


.flex-s-s {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.flex-s-c {
	display: flex;
	justify-content:  flex-start;
	align-items: center;
}

.flex-c-c {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-space-between-c {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

/*
    NO SUPPORT
*/

.ns-w {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	text-align: center;
    color: #00f29e;
	background-color: #1b1f23;
    padding: 2vw;
}

/*
    404
*/

._404 {
    margin-top: 6.5vw;
}

._404 .section-inlay {
    padding-bottom: 12.5vw;
}

@media screen and (min-width: 991px) and (max-width: 1450px) {
    .nav-link .name {
        display: none;
    }

    .small,
    li {
        font-size: 1.1vw;
    }

    .link p, 
    .button p, 
    .footer-link, 
    #nav-button p,
    .nav-link {
        font-size: 1vw;
    }

    .overline {
        font-size: 1vw;
    }

    .chapter {
        padding: 1vw 0 0.9vw;
    }

    #detail-scroll {
        width: 36vw;
    }

    .detail-c .copy {
        font-size: 1.5vw;
    }
}

@media screen and (max-width: 990px) {

    h1, .h1 {
        font-size: 9.6vw;
    }
    
    h2, .h2 {
        font-size: 4.5vw;
        line-height: 1.2em;
    }
    
    h3, .h3 {
        font-size: 3.35vw;
    }
    
    .h0 {
        font-size: 15vw;
    }
    
    p,
    ._404 a {
        font-size: 2.25vw;
    }
    
    .small, 
    li {
        font-size: 2vw;
    }
    
    .overline {
        font-size: 1.5vw;
    }
    
    .link p,
    .button p,
    .footer-link,
    #nav-button p {
        font-size: 1.85vw;
    }

    .nav-link {
        font-size: 2vw;
    }

    .circle-link > p,
    .circle-link > .link {
        font-size: 2.8vw;
        width: 12.5vw;
    }

    .timeline p {
        font-size: 3vw;
    }

    .chapter p {
        font-size: 2vw;
    }

    .chapter {
        width: 8vw;
        padding: 1.5vw 0 1.4vw;
    }

    .chapter-line {
        height: 0.5vw;
    }

    .link .arrow-c {
        width: 1.5vw;
        margin: 0 0 0.3vw 0.7vw;
    }

    .circle-link {
        width: 22vw;
        height: 22vw;
    }

    .circle-inlay {
        position: relative;
        width: 12.5vw;
        height: 12.5vw;
    }

    .circle-inlay img {
        width: 2.6vw;
    }

    .button > :first-child {
        padding: 2.5vw 3vw 2.3vw;
    }

    .button > :nth-child(2) {
        width: 5.5vw;
    }

    .button .arrow-c {
        width: 2vw;
    }

    .overline-w {
        margin: 0 0 4vw;
    }

    #nav {
        height: 9vw;
    }

    #logo {
        width: 22vw;
    }

    #nav-button {
        width: 14vw;
    }

    #nav-button p {
        width: 12vw;
        text-align: center;
    }

    #link-w {
        display: none;
    }

    #nav-toggle {
        display: flex;
        width: 14vw;
        height: 100%;
        background: #16191c;
    }

    #nav-toggle > div {
        position: relative;
        width: 4vw;
        height: 1.6vw;
    }

    #nav-open,
    #nav-close {
        width: 100%;
        height: 100%;
    }

    #nav-close {
        position: absolute;
        top: 0;
        left: 0;
    }

    .toggle-line {
        position: absolute;
        width: 100%;
        height: 1px;
        overflow: hidden;
    }

    .toggle-inlay {
        width: 100%;
        height: 100%;
        background: #00f29e;
    }

    #nav-open > :first-child {
        top: 0;
        left: 0;
    }

    #nav-open > :last-child {
        margin-top: auto;
        bottom: 0;
        left: 0;

    }

    #nav-close > div {
        top: 50%;
        left: 50%;
    }

    #nav-close > :first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    #nav-close > :last-child {
        transform: translate(-50%, -50%) rotate(135deg);
    }

    #nav-close .toggle-inlay {
        transform: translateX(-100%);
    }

    #link-w-m {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #16191c;
        color: #fff;
        padding: 6vw 10vw;
        pointer-events: none;
        opacity: 0;
    }

    .nav-link {
        padding: 0;
        margin: 0;
    }

    .nav-link:not(:last-child) {
        margin: 0 0 3vw;
    }

    .section-inlay {
        padding: 10vw;
    }

    main .full {
        min-height: calc(100vh - 9vw);
    }

    .header, .header-sub {
        margin-top: 9vw;
    }

    .header .copy,
    .header-sub .copy {
        width: 60vw;
    }

    .gr-1 .h1 {
        width: 70vw;
    }

    .gr-1 .signature {
        position: absolute;
        bottom: 10vw;
        right: 10vw;
        width: 22vw;
        height: 22vw;
    }

    .gr-1 .signature-outline {
        width: 10vw;
    }

    .gr-2 .graphic-c,
    .gr-8 .graphic-c {
        flex-direction: column;
        margin: 0 -10vw 20vw;
    }

    .gr-2 .outline,
    .gr-8 .outline {
        margin: 4vw 0 0 32vw;
    }

    .gr-2 .copy {
        margin: 0 0 18vw;
    }

    .gr-2 h2 {
        margin: 0 0 6vw;
    }

    .gr-2 .copy p {
        width: 60vw;
        margin: 0 auto 4vw;
    }

    .gr-2 .image-comp > *,
    .gr-8 .image-comp > * {
        width: 20vw;
    }

    .gr-2 .image-comp :first-child {
        top: 18vw;
        right: 10vw;
    }
    
    .gr-2 .image-comp :nth-child(2) {
        top: 32vw;
        left: 10vw;
    }
    
    .gr-2 .image-comp :nth-child(3) {
        top: 158vw;
        right: 0;
    }
    
    .gr-2 .image-comp :nth-child(4) {
        top: 170vw;
        left: 10vw;
    }

    .gr-2 .image-comp :nth-child(5),
    .gr-2 .image-comp :nth-child(6) {
        display: none;
    }

    .gr-11 {
        padding: 0;
    }

    .gr-11 h2 {
        width: 55vw;
    }

    .info-w {
        flex-direction: column;
        height: auto;
    }

    .info {
        width: auto;
        height: 45vw;
        margin: 0 20vw 5vw;
    }

    .info-overline {
        padding: 3.5vw 3.5vw 0;
    }

    .info-overline p {
        margin: 0 0 1.8vw;
    }
    
    .info-w .advantage {
        width: 48vw;
    }
    
    .info-w .adifo {
        width: 30vw;
    }
    
    .info-w .china {
        width: 26.5vw;
    }

    .info-underline .link:not(:last-child) {
        margin: 0 0 1.5vw;
    }

    .info-underline {
        padding: 0 3.5vw 3.5vw;
    }

    .timeline > p {
        width: 32vw;
    }

    .gr-3 .chapter,
    .gr-6 .chapter,
    .gr-14 .chapter {
        margin-bottom: 2.5vw;
    }

    .gr-3 .copy {
        width: auto;
    }

    .gr-4 h2 {
        width: 65vw;
        margin: 0 0 4vw;
    }

    .gr-5 {
        flex-direction: column-reverse;
    }

    .gr-5 .copy,
    .gr-5 .image {
        width: 60vw;
    }

    .gr-5 .image-w {
        margin: 0 0 6vw;
    }

    .gr-5 .image-c {
        display: none;
    }

    .gr-5 h2 {
        margin: 0 0 4vw;
    }

    .gr-5 ul {
        padding: 3.5vw 3.5vw 3.5vw 0;
    }

    .gr-5 li:not(:last-child) {
        margin: 0 0 2vw;
    }

    .list-icon-w {
        width: 8.5vw;
    }

    .gr-5 li h3, 
    .gr-18 li h3 {
        font-size: 1.65vw;
        margin-left: 2.5vw;
    }

    .gr-6 .copy {
        width: auto;
    }

    .gr-6 > .section-inlay p {
        width: 60vw;
    }

    .gr-14,
    .gr-6 .full .section-inlay {
        display: flex;
        align-items: center;
    }

    .gr-7 {
        flex-direction: column-reverse;
    }

    .gr-7 .copy,
    .gr-7 .image {
        width: 60vw;
    }

    .gr-7 .image-w {
        margin: 0 0 6vw;
    }

    .gr-7 .image-c {
        display: none;
    }

    .gr-7 h2 {
        margin: 0 0 4vw;
    }

    .gr-7 .adifo {
        width: 36vw;
    }

    .gr-8 .h0 {
        margin: 0 0 6vw;
    }

    .gr-8 .copy {
        width: auto;
    }

    .gr-8 .signature-long {
        width: 28vw;
        margin-bottom: 4vw; 
    }

    .gr-8 .copy p {
        width: 60vw;
    }

    .gr-8 .image-comp :first-child {
        top: 26vw;
        right: 10vw;
        left: auto;
    }
    
    .gr-8 .image-comp :nth-child(2) {
        top: 35vw;
        right: 10vw;
    }
    
    .gr-8 .image-comp :nth-child(3) {
        top: 130vw;
        right: 0;
    }
    
    .gr-8 .image-comp :nth-child(4) {
        top: 136vw;
        left: 10vw;
    }

    .gr-8 .image-comp :nth-child(5),
    .gr-8 .image-comp :nth-child(6) {
        display: none;
    }

    .gr-9 > .flex-s-s {
        flex-direction: column-reverse;
        margin: 0 0 6vw;
    }

    .gr-9 .copy,
    .gr-9 > .flex-s-s > :nth-child(2) {
        width: 60vw;
    }

    .gr-9 > .flex-s-s > :nth-child(2) {
        display: none;
    }

    .gr-9 h2 {
        margin: 0;
    }

    .drag-w {
        margin: 0 -10vw;
    }

    .drag {
        padding: 0 10vw;
    }

    .gr-9 .news-item {
        width: 45vw;
        padding: 0 0 6vw 0;
    }

    .gr-9 .news-item:not(:last-child) {
        margin-right: 4vw;
    }

    .gr-9 .news-item .image-w {
        margin: 0 0 2.6vw;
    }

    .gr-9 .news-item h3 {
        margin: 0 0 1.7vw;
    }

    .gr-10 {
        padding: 10vw 22vw;
    }

    .gr-12 {
        flex-direction: column;
        align-items: center;
    }

    .gr-12 .heading,
    .gr-12 .copy {
        width: 60vw;
    }

    .gr-12 .heading {
        margin: 0 0 4vw;
        order: 2;
    }

    .gr-12 .copy {
        margin: 0;
        flex-direction: column;
        order: 3;
    }

    .gr-12 ul {
        width: auto;
        padding: 0;
    }

    .gr-12 li:not(:last-child),
    .gr-12 ul:first-child li:last-child {
        padding: 0 0 6vw;
    }

    .gr-12 ul:first-child li:last-child::after {
        content: '';
        position: absolute;
        left: 0;
        height: 4px;
        background: #fff;
    }

    .gr-12 li:not(:last-child)::after,
    .gr-12 ul:first-child li:last-child::after {
        width: 4vw;
        bottom: 3vw;
    }

    .gr-12 img {
        position: relative;
        bottom: auto;
        left: auto;
        width: 60vw;
        margin: 0 0 6vw;
        order: 1;
    }

    .gr-13 {
        flex-direction: column-reverse;
    }

    .gr-13 .copy,
    .gr-13 .image {
        width: 60vw;
    }

    .gr-13 .image-w {
        margin: 0 0 6vw;
    }

    .gr-13 .image-c {
        display: none;
    }

    .gr-13 h2 {
        margin: 0 0 4vw;
    }

    .gr-13 .copy > .small:not(:last-of-type) {
        margin: 0 0 2.5vw;
    }

    .gr-13 .copy > .small:last-of-type {
        margin: 0 0 4vw;
    }

    .gr-13 .circle-link {
        width: 22vw;
        height: 22vw;
    }

    .gr-13 .coachad {
        width: 16vw;
    }
    
    .gr-14 .copy {
        width: auto;
    }

    .gr-15 {
        padding: 16vw 10vw 10vw; 
    }

    .gr-15 .copy {
        width: 44vw;
    }

    .gr-15 .circle-link {
        margin: 20vw 0 0 auto;
    }

    .gr-15 .outline.visions.top {
        top: 4vw;
        right: -10vw;
        width: 60vw;
    }

    .gr-15 .outline.visions.bottom {
        bottom: 0;
        left: -12vw;
        width: 92vw;
    }

    .gr-15 .outline.news {
        width: 68vw;
    }

    .gr-15 .outline.news.top {
        top: 5vw;
        right: -17vw;
    }

    .gr-15 .outline.news.bottom {
        bottom: 0;
        left: -8vw;
    }

    .gr-16 .news-item {
        width: 38vw;
        padding: 0 0 6vw 0;
    }

    .gr-16 .news-item:nth-child(3n + 2),
    .gr-16 .news-item:nth-child(3n),
    .gr-16 .news-item:not(:nth-child(-n + 3)) {
        margin: 0;
    }

    .gr-16 .news-item:nth-child(2n) {
        margin-left: 4vw;
    }

    .gr-16 .news-item:not(:nth-child(-n + 2)) {
        margin-top: 6vw;
    }

    .gr-16 .news-item .image-w {
        margin: 0 0 2.6vw;
    }

    .gr-16 .news-item h3 {
        margin: 0 0 1.7vw;
    }

    .gr-17 {
        padding: 16vw 10vw 10vw;
        flex-direction: column;
        align-items: center;
    }

    .gr-17 .image-w,
    .gr-17 .copy {
        width: 60vw;
    }

    .gr-17 .image-w {
        margin: 0 0 6vw;
    }

    .gr-17 .copy {
        margin: 0;
    }

    .gr-17 h1 {
        margin: 0 0 6vw;
    }

    .gr-17 .outline.top {
        top: 8vw;
    }

    .gr-17 .outline.visions.top {
        top: 5.5vw;
        left: -4vw;
        width: 60vw;
    }

    .gr-17 .outline.visions.bottom {
        bottom: 5vw;
        right: -16vw;
        width: 92vw;
    }

    .gr-17 .outline.news {
        width: 68vw;
    }

    .gr-17 .outline.news.top {
        top: 5vw;
        left: -4vw;
    }

    .gr-17 .outline.news.bottom {
        bottom: 6vw;
        right: -5vw;
    }

    .gr-18 {
        flex-direction: column-reverse;
    }

    .gr-18 .image-w,
    .gr-18 .copy {
        width: 60vw;
    }

    .gr-18 .image-w {
        margin: 0 0 6vw;
    }

    .gr-18 h2 {
        margin: 0 0 4vw;
    }

    .gr-18 .small:not(:last-child) {
        margin: 0 0 6vw;
    }

    .gr-18 .copy img {
        width: 35vw;
    }

    .gr-18 .image-c {
        display: none;
    }

    .gr-20 {
        padding: 10vw 25vw 14vw;
    }

    .gr-20 h2 {
        margin: 0 0 6vw;
    }

    .news-c {
        flex-direction: column;
    }

    .news-c .image-w,
    .news-content {
        width: 100%;
    }

    .news-c:not(:last-child) {
        margin: 0 0 6vw;
    }

    .news-content {
        padding: 3vw 0 0;
    }

    .news-content .overline {
        margin: 0 0 1.5vw;
    }

    .news-content h3 {
        margin: 0 0 1.5vw;
    }

    .gr-20 .outline {
        width: 68vw;
    }
    
    .gr-20 .outline.bottom {
        bottom: -8vw;
        left: -5vw;
    }

    .gr-21 {
        flex-direction: column;
    }

    .gr-21 > :first-child {
        width: 40vw;
        margin: 0 0 6vw;
    }

    .gr-21 > :nth-child(2) {
        width: 100%;
        margin: 0;
        padding: 4.5vw 0;
    }

    .partner:nth-child(n+4) {
        margin-top: 6vw;
    }

    .partner:not(:last-child):not(:nth-child(3)) {
        margin-right: 8vw;
    }
    
    .partner.adidas {
        width: 11vw;
    }

    .partner.bdo {
        width: 8vw;
    }

    .partner.fenrir {
        width: 26.2vw;
    }
    
    .partner.gornylaw {
        width: 25vw;
    }

    .partner.milk {
        width: 13.4vw;
    }

    .footer .content {
        flex-direction: column;
    }

    .footer .content > :first-child {
        width: auto;
    }

    .footer .content > :nth-child(2) {
        margin: 6vw 0 0;
        width: 100%;
    }

    .footer .small {
        width: 45vw;
        margin-left: 8vw;
    }

    .footer .ad-legacy {
        width: 23vw;
        margin-top: 1vw;
    }

    .logo-w {
        margin-top: 4vw;
        padding: 3vw 0;
    }

    .logo-c {
        width: 50%;
    }

    .footer .logo-c {
        height: 10vw;
    }

    .logo-c:not(:nth-child(3n + 3)) {
        border-right: none;
    }

    .logo-c:not(:nth-child(2n + 2)) {
        border-right: 2px solid #00f29e;
    }

    .logo-c:nth-child(n+4) {
        margin-top: 0;
    }

    .legal-header {
        padding: 14vw 20vw 0;
    }

    .legal-inlay {
        padding: 5vw 20vw;
    }

    .legal-item {
        margin: 0 0 5vw;
    }

    .legal-header h1, 
    .legal-item h3, 
    .legal-header .small:not(:last-child), 
    .legal-item .small:not(:last-child) {
        margin: 0 0 1.5vw;
    }

    .archive-logo {
        width: 32vh;
    }

    .archive-w .back-link {
        top: 4.5vh;
        left: auto;
        right: 8vh;
        transform: none;
        padding: 0 1vh 1vh;
    }

    .archive p,
    .archive a {
        font-size: 22px;
    }

    .mode-name-w {
        height: 22px;
    }

    .archive-c {
        padding: 0 24vh;
    }

    .archive-item {
        height: 28vh;
    }

    .archive-item:nth-child(6n + 1) {
        margin: 40vh -3vh 0 0;
    }
    
    .archive-item:nth-child(6n + 2) {
        margin: 0 24vh 38vh 0;
    }
    
    .archive-item:nth-child(6n + 3) {
        margin: 0 24vh 0 0;
    }
    
    .archive-item:nth-child(6n + 4) {
        margin: 0 0 20vh 0;
    }
    
    .archive-item:nth-child(6n + 5) {
        margin: 48vh 15vh 0 0;
    }
    
    .archive-item:nth-child(6n) {
        margin: 0 18vh 32vh 0;
    }

    #detail-scroll {
        width: 50vw;
        padding: 12vw 0 8vw;
    }

    .detail-image {
        margin: 0 0 2vw;
    }

    .detail-c .copy {
        font-size: 2.5vw;
    }

    .archive-w .scroll {
        display: none;
    }

    /*
        404
    */

    ._404 {
        margin-top: 9vw;
    }

    ._404 .section-inlay {
        padding-bottom: 19vw;
    }
}

@media screen and (max-width: 567px) {
    h1, .h1 {
        font-size: 13vw;
        line-height: 1.14em;
    }
    
    h2, .h2 {
        font-size: 8vw;
    }
    
    h3, .h3 {
        font-size: 6.5vw;
    }
    
    .h0 {
        font-size: 18vw;
    }
    
    p,
    ._404 a {
        font-size: 4.5vw;
    }
    
    .small, 
    li,
    .link p,
    .button p,
    .footer-link {
        font-size: 4vw;
    }
    
    .overline {
        font-size: 2.8vw;
        white-space: normal;
    }
    
    #nav-button p {
        font-size: 3.2vw;
    }

    .nav-link {
        font-size: 4.5vw;
    }

    .circle-link > p,
    .circle-link > .link {
        font-size: 5vw;
        width: 22vw;
    }

    .timeline p {
        font-size: 6vw;
    }

    .chapter p {
        font-size: 5vw;
    }

    .chapter {
        width: 18vw;
        padding: 3.2vw 0 3vw;
    }

    .chapter-line {
        height: 0.5vw;
    }

    .link .arrow-c {
        width: 2.5vw;
        margin: 0 0 0.4vw 1.5vw;
    }

    .circle-link {
        width: 38vw;
        height: 38vw;
    }

    .circle-inlay {
        position: relative;
        width: 22vw;
        height: 22vw;
    }

    .circle-inlay img {
        width: 5vw;
    }

    .overline-w {
        margin: 0 0 6vw;
    }

    .overline-line {
        width: 8vw;
        margin-right: 3.5vw;
    }

    #nav {
        height: 18vw;
        padding-left: 5vw;
    }

    #logo {
        width: 38vw;
        margin-top: 1vw;
    }

    #nav-button {
        width: 20vw;
    }

    #nav-toggle {
        width: 20vw;
    }

    #nav-toggle > div {
        width: 6vw;
        height: 2.5vw;
    }

    #link-w-m {
        padding: 10vw 5vw;
    }

    .nav-link:not(:last-child) {
        margin: 0 0 8vw;
    }

    .section-inlay {
        padding: 14vw 5vw;
    }

    main .full {
        min-height: calc(100vh - 18vw);
    }

    .header, 
    .header-sub {
        margin-top: 18vw;
    }

    .header .copy,
    .header-sub .copy {
        width: 82vw;
    }

    .header .section-inlay {
        padding-bottom: 26vw;
    }

    .header .circle-link {
        top: auto;
        bottom: 8vw;
        right: 8vw;
        transform: none;
    }

    .header .outline {
        width: 100vw;
    }

    .header .outline.top {
        left: 20vw;
    }

    .header .outline.bottom {
        left: -30vw;
    }

    .header-sub .section-inlay {
        padding-bottom: 38vw;
    }

    .header-sub .circle-link {
        top: auto;
        bottom: 2vw;
        right: 8vw;
        transform: none;
    }

    .header-sub .outline {
        width: 110vw;
    }
    
    .header-sub .outline.top {
        top: -7vw;
        left: 25vw;
    }
    
    .header-sub .outline.bottom {
        bottom: -4vw;
        left: -30vw;
    }

    .gr-1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .gr-1 .h1 {
        width: auto;
    }

    .gr-1 .signature {
        position: relative;
        bottom: auto;
        right: auto;
        width: 38vw;
        height: 38vw;
        margin: 8vw 0 0;
        transform: none;
    }

    .gr-1 .signature-outline {
        width: 16vw;
    }

    .gr-2 .graphic-c {
        margin: 0 -5vw 24vw;
    }

    .gr-2 .outline {
        width: 190vw;
        margin: 10vw 0 0 92vw;
    }

    .gr-2 .copy {
        margin: 0 0 14vw;
    }

    .gr-2 h2 {
        margin: 0 0 10vw;
    }

    .gr-2 .copy p {
        width: auto;
        margin: 0 0 6vw;
    }

    .gr-2 .image-comp > *,
    .gr-8 .image-comp > * {
        width: 28vw;
    }

    .gr-2 .image-comp :first-child {
        top: 40vw;
        right: 5vw;
    }
    
    .gr-2 .image-comp :nth-child(2) {
        top: 60vw;
        left: 0vw;
    }
    
    .gr-2 .image-comp :nth-child(3),
    .gr-2 .image-comp :nth-child(4) {
        display: none;
    }

    .timeline-line {
        height: 0.4vw;
        margin: 0 4vw;
    }

    .timeline .flex-s-c {
        margin: 0 0 6vw;
    }

    .timeline > p {
        width: 62vw;
    }

    .gr-11 {
        padding: 0;
    }

    .gr-11 h2 {
        width: 80vw;
        margin: 0 auto 6vw;
    }

    .info {
        height: 75vw;
        margin: 0 5vw 5vw;
    }

    .info-line {
        width: 10vw;
    }

    .info-overline {
        padding: 6vw 6vw 0;
    }

    .info-overline p {
        margin: 0 0 3vw;
    }

    .info-underline {
        padding: 0 6vw 6vw;
    }

    .info-underline .link:not(:last-child) {
        margin: 0 0 5vw;
    }

    .info-w .advantage {
        width: 78vw;
    }
    
    .info-w .adifo {
        width: 50vw;
    }
    
    .info-w .china {
        width: 46vw;
    }

    .gr-3 .chapter, 
    .gr-6 .chapter, 
    .gr-14 .chapter {
        margin-bottom: 5vw;
    }

    .gr-3 .copy {
        width: 84vw;
    }

    .gr-3 .outline {
        width: 140vw;
    }

    .gr-3 .outline.top {
        left: 25vw;
    }

    .gr-3 .outline.bottom {
        left: -45vw;
    }

    .gr-4 h2 {
        width: auto;
        margin: 0 0 6vw;
    }

    .gr-14 .outline {
        width: 90vw;
    }

    .gr-5 .copy, 
    .gr-5 .image {
        width: 100%;
    }

    .gr-5 .image-w {
        margin: 0 0 10vw;
    }

    .gr-5 h2 {
        margin: 0 0 6vw;
    }

    .icon-list:not(:last-child) {
        margin: 0 0 8vw;
    }

    .gr-5 ul {
        padding: 6vw 0;
    }

    .gr-5 li:not(:last-child) {
        margin: 0 0 4vw;
    }

    .list-icon-w {
        width: 20vw;
    }

    .gr-5 li h3, 
    .gr-18 li h3 {
        font-size: 4vw;
        margin-left: 5vw;
    }

    .button > :first-child {
        padding: 4.75vw 6vw 4.4vw;
    }

    .button > :nth-child(2) {
        width: 12vw;
    }

    .button .arrow-c {
        width: 4vw;
    }

    .gr-6 > .section-inlay {
        padding: 8vw 5vw 2vw;
    }

    .gr-6 > .section-inlay p {
        width: auto;
    }

    .gr-6 .full .section-inlay {
        padding: 14vw 5vw;
    }

    .gr-6 .outline {
        width: 100vw;
    }

    .gr-6 .outline.bottom {
        left: -16vw;
    }

    .gr-7 .copy, 
    .gr-7 .image {
        width: 100%;
    }

    .gr-7 .image-w {
        margin: 0 0 10vw;
    }

    .gr-7 .overline-line {
        margin-bottom: 3vw;
    }

    .gr-7 h2 {
        margin: 0 0 6vw;
    }

    .gr-7 .copy > p {
        margin: 0 0 10vw;
    }

    .gr-7 .adifo {
        width: 72vw;
    }

    .gr-8 .signature-long {
        width: 50vw;
        margin-bottom: 6vw;
    }

    .gr-8 h2 {
        margin: 0 0 8vw;
    }

    .gr-8 .image-comp :first-child {
        top: 40vw;
        right: 5vw;
    }
    
    .gr-8 .image-comp :nth-child(2) {
        top: 28vw;
        left: 0vw;
    }
    
    .gr-8 .image-comp :nth-child(3),
    .gr-8 .image-comp :nth-child(4) {
        display: none;
    }

    .gr-8 .copy p {
        width: auto;
        margin: 0 0 8vw;
    }

    .gr-9 .chapter {
        margin: 0 0 6.5vw;
    }

    .gr-9 > .flex-s-s {
        margin: 0 0 8vw;
    }

    .drag-w {
        margin: 0 -5vw;
    }

    .drag {
        padding: 0 5vw;
    }

    .gr-9 .news-item {
        width: 84vw;
        padding: 0 0 10vw 0;
    }

    .gr-9 .news-item:not(:last-child) {
        margin-right: 5vw;
    }

    .gr-9 .news-item .image-w {
        margin: 0 0 6vw;
    }

    .gr-9 .news-item h3 {
        margin: 0 0 4vw;
    }

    .gr-10 {
        padding: 14vw 12vw;
    }

    .gr-10 .circle-link {
        margin: 0 auto 8vw;
    }

    .gr-13 .copy,
    .gr-13 .image {
        width: 100%;
    }

    .gr-13 .image-w {
        margin: 0 0 10vw;
    }

    .gr-13 h2 {
        margin: 0 0 6vw;
    }

    .gr-13 .copy > .small:not(:last-of-type) {
        margin: 0 0 4vw;
    }

    .gr-13 .copy > .small:last-of-type {
        margin: 0 0 6vw;
    }

    .gr-13 .circle-link {
        width: 38vw;
        height: 38vw;
    }

    .gr-13 .coachad {
        width: 28vw;
    }

    .gr-12 img {
        width: 100%;
        margin: 0 0 10vw;
    }

    .gr-12 .heading,
    .gr-12 .copy {
        width: 100%;
    }

    .gr-12 .heading {
        margin: 0 0 6vw;
    }

    .gr-12 li:not(:last-child),
    .gr-12 ul:first-child li:last-child {
        padding: 0 0 14vw;
    }

    .gr-12 li:not(:last-child)::after,
    .gr-12 ul:first-child li:last-child::after {
        width: 10vw;
        bottom: 7vw;
    }

    .gr-15 {
        padding: 28vw 5vw 14vw;
        flex-direction: column;
    }

    .gr-15 .copy {
        width: 55vw;
        margin: 0 0 6vw;
    }

    .gr-15 .circle-link {
        margin: 10vw 0 0 auto;
    }

    .gr-15 .outline.visions.top {
        top: 13vw;
        right: -34vw;
        width: 82vw;
    }

    .gr-15 .outline.visions.bottom {
        bottom: 0;
        left: -12vw;
        width: 145vw;
    }

    .gr-15 .outline.news {
        width: 95vw;
    }

    .gr-15 .outline.news.top {
        top: 12vw;
        right: -38vw;
    }

    .gr-15 .outline.news.bottom {
        bottom: 0;
        left: -6vw;
    }

    .gr-16 .news-item {
        width: 100%;
        padding: 0 0 10vw;
    }

    .gr-16 .news-item:nth-child(2n),
    .gr-16 .news-item:not(:nth-child(-n + 2)) {
        margin: 0;
    }

    .gr-16 .news-item:not(:last-child) {
        margin: 0 0 8vw;
    }

    .gr-16 .news-item .image-w {
        margin: 0 0 6vw;
    }

    .gr-16 .news-item h3 {
        margin: 0 0 4vw;
    }

    .gr-17 {
        padding: 23vw 5vw 14vw;
    }

    .gr-17 .image-w, 
    .gr-17 .copy {
        width: 100%;
    }

    .gr-17 .image-w,
    .gr-17 h1 {
        margin: 0 0 8vw;
    }

    .gr-17 .outline.visions.top,
    .gr-17 .outline.news.top {
        display: none;
    }

    .gr-17 .outline.visions.bottom {
        right: -20vw;
        width: 135vw;
    }

    .gr-17 .outline.news.bottom {
        width: 95vw;
    }

    .gr-18 .image-w, 
    .gr-18 .copy {
        width: 100%;
    }

    .gr-18 .image-w {
        margin: 0 0 10vw;
    }

    .gr-18 h2 {
        margin: 0 0 6vw;
    }

    .gr-18 .small:not(:last-child) {
        margin: 0 0 8vw;
    }

    .gr-18 .copy img {
        width: 56vw;
    }

    .gr-20 {
        padding: 24vw 5vw;
    }

    .gr-20 h2 {
        margin: 0 0 8vw;
    }

    .news-c:not(:last-child) {
        margin: 0 0 8vw;
    }

    .news-content {
        padding: 6vw 0 0;
    }

    .news-content .overline {
        margin: 0 0 4vw;
    }

    .news-content h3 {
        margin: 0 0 4vw;
    }

    .gr-20 .outline {
        width: 95vw;
    }
    
    .gr-20 .outline.bottom {
        bottom: -8vw;
        left: -5vw;
    }

    .gr-21 > :first-child {
        width: 80vw;
    }

    .gr-21 > :nth-child(2) {
        padding: 8vw 0;
    }

    .partner:nth-child(n+4) {
        margin-top: 8vw;
    }

    .partner:not(:last-child):not(:nth-child(3)) {
        margin-right: 10vw;
    }

    .partner.adidas {
        width: 18vw;
    }

    .partner.bdo {
        width: 10vw;
    }
        
    .partner.fenrir {
        width: 39vw;
    }
    
    .partner.gornylaw {
        width: 37vw;
    }

    .partner.milk {
        width: 22vw;
    }

    .footer .flex-space-between-c {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .footer .flex-space-between-c .flex {
        flex-direction: column;
        margin: 0 0 6vw;
    }

    .footer-link:not(:first-child) {
        margin: 6vw 0 0;
    }

    .legal-header {
        padding: 24vw 5vw 0;
    }

    .legal-inlay {
        padding: 8vw 5vw;
    }

    .legal-item {
        margin: 0 0 8vw;
    }

    .legal-header h1, 
    .legal-item h3, 
    .legal-header .small:not(:last-child), 
    .legal-item .small:not(:last-child) {
        margin: 0 0 4vw;
    }

    .archive-logo {
        top: 5vw;
        left: 5vw;
        width: 45vw;
    }

    .archive-w .back-link {
        top: 6vw;
        right: 4vw;
        padding: 0 1vh 1vh;
    }

    .archive-w p,
    .archive-w a {
        font-size: 16px;
    }

    .mode-name-w {
        height: 16px;
    }

    .mode-switch {
        right: 4vh;
    }

    .archive-c {
        padding: 0 5vh;
    }

    .archive-item {
        height: 32vh;
        max-height: 56vw;
    }

    .archive-item:nth-child(6n + 1) {
        margin: 40vh -2vh 0 0;
    }
    
    .archive-item:nth-child(6n + 2) {
        margin: 0 12vh 32vh 0;
    }
    
    .archive-item:nth-child(6n + 3) {
        margin: 0 14vh 0 0;
    }
    
    .archive-item:nth-child(6n + 4) {
        margin: 0 0 28vh 0;
    }
    
    .archive-item:nth-child(6n + 5) {
        margin: 40vh 12vh 0 0;
    }
    
    .archive-item:nth-child(6n) {
        margin: 0 14vh 28vh 0;
    }

    #detail-scroll {
        width: 90vw;
        padding: 22vw 0 8vw;
    }

    .detail-image {
        margin: 0 0 4vw;
    }

    .detail-c .copy {
        font-size: 4.5vw;
    }

    .archive-w .outline {
        width: 100vh;
    }

    .archive-w .outline.top {
        top: 14vh;
        right: 0;
    }

    .archive-w .outline.bottom {
        left: 0;
    }

    /*
        404
    */

    ._404 {
        margin-top: 18vw;
    }

    ._404 .section-inlay {
        padding-bottom: 32vw;
    }
}