html,
body {
    background: #000;
    color: #DDD;
    overflow-x: hidden;
}

span {
    font-weight: 600;
    letter-spacing: .011em;
}


.g-wrap {
    /* position: fixed; */
    top: 0;
    left: 0;
    display: flex;
    width: 100vw;
    height: 60vw;
    background: #000;
}

.text {
    position: relative;
    width: 800px;
    font-size: 40px;
    margin: auto;
    line-height: 1.5;
    padding: 20px;
    color: #fff;
    background: #000;
    overflow: hidden;
}

.bg {
    filter: blur(.8rem);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 400%;
    background: linear-gradient(-3deg, #000, #000 25%, #ffb6ff, #b344ff, #000 75%, #000);
    z-index: 1;
    mix-blend-mode: darken;
    /* mix-blend-mode: hard-light; */
    transition: all .5s linear;
}

.g-scroll {
    position: relative;
    width: 100vw;
    height: 400vw;
}

.content {
    width: 88%;
    /* text-align: center; */
}

.gradient-b {
    margin: 0;
    padding: 0;
    width: 100%;

}

.gradient-b>picture>* {
    width: 100vw;
}

.mirror * {
    transform: rotate(180deg) translateY(2px);
}

.gradient-b.wrapper>.flex-center>.info-content {

    z-index: 20;
    color: #000;
    display: none;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    text-align: center;
}

.flex-center {
    display: flex;
    justify-content: center;
}

.image {
    position: relative;
    overflow: hidden;
}

.imac img {
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 30px), 0);
}

@media only screen and (max-width: 1068px) {
    html.enhance-deep-dive .deep-dive-button-open-container {
        margin-top: 48px;
    }
}

html.enhance-deep-dive .deep-dive-button-open-container {
    margin-top: 90px;
}

@media only screen and (max-width: 1068px) {
    html.enhance-deep-dive .deep-dive-button-open-container {
        --button-open-image-size: 60px;
        --button-open-image-offset: 258px;
        --dd-btn-container-min-width: 692px;
    }
}

html.enhance-deep-dive .deep-dive-button-open-container {
    --button-open-image-size: 70px;
    --button-open-image-offset: 298px;
    --dd-btn-container-min-width: 980px;
    --dd-btn-width: 312px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    min-width: var(--dd-btn-container-min-width);
    max-width: calc(var(--dd-btn-container-min-width) + var(--button-open-image-offset));
    width: calc(100% - 80px);
}

html.enhance-deep-dive .deep-dive-button-close,
html.enhance-deep-dive .deep-dive-button-open-container,
html.enhance-deep-dive .deep-dive-content {
    transition: transform var(--deep-dive-transition-duration), opacity calc(var(--deep-dive-transition-duration)/2);
    transition-delay: 0s, calc(var(--deep-dive-transition-duration)/2);
}

html.enhance-deep-dive .deep-dive-button {
    --deep-dive-button-mask-progress: 0;
    position: relative;
    background: transparent;
    border: none;
    z-index: 1;
    display: flex;
    align-items: center;
    text-align: right;
}

:lang(ja),
:lang(ko),
:lang(th),
:lang(zh) {
    font-style: normal;
}

:lang(zh-CN) {
    quotes: "“""”";
}

html.enhance-deep-dive .deep-dive-button-open-container .deep-dive-button-copy {
    display: inline-block;
    color: #dedede;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.37, 0, 0.29, 1);
    font-size: 1.3rem;
    margin-right: 1rem;
}

html.enhance-deep-dive .deep-dive-container .deep-dive-button-copy {
    color: #cecece;
}

html.enhance-deep-dive .deep-dive-button-open-container .deep-dive-button-open.show .deep-dive-button-copy {
    opacity: 1;
}

html[dir=ltr].enhance-deep-dive .deep-dive-button-open-container .deep-dive-button-copy {
    margin-right: 20px;
}

html.enhance-deep-dive .deep-dive-button-image {
    background: linear-gradient(180deg, #ffb6ff, #b344ff);
    background-color: #ffb6ff 0%;
    cursor: pointer;
}

html.enhance-deep-dive .deep-dive-button-image:hover {
    background: linear-gradient(0deg, #ffb6ff, #b344ff);
    background-color: #b344ff 100%;
}

html.enhance-deep-dive .deep-dive-button-image.gold {
    background: linear-gradient(180deg, #ffe993, #eb831c);
}

html.enhance-deep-dive .deep-dive-button-open-container .deep-dive-button-open.show .deep-dive-button-image {
    transform: translateX(0);
}

html.enhance-deep-dive .deep-dive-button-open-container .deep-dive-button-image {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    transition: transform var(--deep-dive-btn-duration) var(--deep-dive-btn-ease);
}

html.enhance-deep-dive .deep-dive-container.dark .deep-dive-button-open-container .deep-dive-button-open .deep-dive-button-image-arrow {
    color: #000;
}

html.enhance-deep-dive .deep-dive-button-open-container .deep-dive-button-image-arrow {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    color: #000;
}

.border-img {
    border-radius: 1rem;
}

.content .border-img.full {
    width: 90%;
}

img.left-half {
    position: absolute;
    left: -2rem;
}

img.right-half {
    position: absolute;
    right: -1rem;
}

@keyframes left-in {
    0% {
        left: -72rem;
    }

    100% {
        left: 0rem;
    }
}

.content.moving {
    text-align: center;
    left: -72rem;
    position: absolute;
    /* animation-iteration-count: infinite; */
    animation-direction: alternate;
}

.content.moving>img {
    height: 15rem;
    margin: 1rem;
    position: absolute;
}

.s1 img:first-of-type {
    left: 1rem;
}

.s1 img:nth-of-type(2) {
    left: 32rem;
}

.s1 img:nth-of-type(3) {
    left: 42.2rem;
}

.bar>button {
    position: absolute;
    height: 1.8rem;
    line-height: 1.6rem;
    width: 4.5rem;
    right: 1.2rem;
    top: .8rem;
    font-size: .8rem;
    border-radius: 3.6rem;
    cursor: pointer;
    border: none;
    background: #226def;
    color: #FFF;
}

.bar>button:hover {
    background: #235acb;
}

.dark-text {
    color: #4894d9;
    text-shadow: none;
    filter: blur(4px) brightness(.85) saturate(1.5);
}

.light-text {
    color: #68a4f9;
    text-shadow: 0 0 18px rgba(61, 151, 219, .6);
    filter: brightness(1.2) saturate(1.1);
}

.canz>.info {
    transform: translateY(300%);
}


@media only screen and (max-width: 720px) {

    .canz>.info {
        transform: translateY(210%);
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .text {
        font-size: 18px;
    }

    .g-wrap {
        margin: 2rem;
        width: calc(100vw - 3.6rem);
    }

    .content.container img.cssd {
        position: unset;
        left: unset;
        right: unset;
    }

    img.inhide {
        display: none;
    }

    .s1.content>img:last-of-type,
    .s1.content>img:first-of-type {
        display: none;
    }

    .content.container {
        width: 95%;
    }
}

header.bar>div.menu {
    display: none !important;
}
