
@font-face {
font-family:"kudryashev-d-excontrast-sans";
src:url("https://use.typekit.net/af/c881eb/00000000000000007735e0cf/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff2"),url("https://use.typekit.net/af/c881eb/00000000000000007735e0cf/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("woff"),url("https://use.typekit.net/af/c881eb/00000000000000007735e0cf/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n3&v=3") format("opentype");
font-display:auto;font-style:normal;font-weight:300;font-stretch:normal;
}

.tk-acumin-pro { font-family: "acumin-pro",sans-serif; }
.tk-kudryashev-d-excontrast-sans { font-family: "kudryashev-d-excontrast-sans",sans-serif; }

*, :after, :before {
    box-sizing: border-box;
}

:root {
    font-size: 18px;
}

body {
    --color-text: #dbb59b;
    --color-text-alt: #dbb59b;
    --color-link: #dbb59b;
    --color-link-hover: #dbb59b;
    --color-menu: #dbb59b;
    --color-menu-hover: #fff;
    --color-menu-border: #dbb59b;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --size-menu: 6vh;
    /*background: linear-gradient(#2b192c, #1a191c);*/
    /*background: #000;*/
    margin: 0;
    /*font-family: acumin-pro-wide, sans-serif;*/
    font-family: "Roboto Mono", monospace;
    font-weight: 300;
}

.js .loading:before, .js .loading:after {
    content: "";
    z-index: 10000;
    position: fixed;
}

.js .loading:before {
    /*background: #000;*/
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.js .loading:after {
    opacity: .4;
    background: #dbb59b;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    animation: .7s linear infinite alternate forwards loaderAnim;
    top: 50%;
    left: 50%;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(.5, .5, 1);
    }
}

a {
    color: #dbb59b;
    outline: none;
    text-decoration: none;
}

a:hover {
    color: var(--color-link-hover);
    outline: none;
}

a:focus {
    background: #d3d3d3;
    outline: none;
}

a:focus:not(:focus-visible), a:focus-visible {
    background: none;
}

.hover-line {
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.hover-line:before {
    content: "";
    transform-origin: 0%;
    background: currentColor;
    width: 100%;
    height: 1px;
    transition: transform .3s;
    position: absolute;
    top: 92%;
}

.hover-line:hover:before {
    transform-origin: 100%;
    transform: scaleX(0);
}

/*.unbutton {
    font: inherit;
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
}

.unbutton:focus {
    outline: none;
}*/

/*main {
    grid-template: "side side side frame frame frame"
        "content content content content content content" 1fr
        / 10vw 10vh 10vw 5vw 32vw 1fr;
    width: 100%;
    min-height: 100vh;
    display: grid;
}*/

.no-js main {
    grid-template-areas: "content content content content content content";
}

.frame {
    color: var(--color-text-alt);
    /*background: #000;*/
    grid-area: frame;
    padding: .75rem 1.5rem;
    position: relative;
}

.frame a {
    pointer-events: auto;
}

.frame__title {
    grid-area: title;
    justify-self: start;
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
}

.frame__links {
    grid-area: links;
    justify-self: end;
    margin: 1rem 0;
    padding: 0;
}

.frame__links a:not(:last-child) {
    margin-right: 1rem;
}

.button-next {
    cursor: not-allowed;
    background: linear-gradient(#9b498a, #9b7749);
    border-radius: 70px 0 0 70px;
    grid-area: content;
    place-self: center end;
    place-items: center;
    width: 70px;
    height: 140px;
    display: none;
}

.color-alt {
    color: var(--color-text-alt);
}

nav.menu {
    pointer-events: none;
    z-index: 999999;
    /*border-bottom: 1px solid var(--color-menu-border);*/
    grid-area: 1 / 1 / 2 / 7;
    grid-template-rows: auto 1fr;
    grid-template-columns: 5vw 5vw 11vh 5vw 1fr;
    display: grid;
    position: relative;

    position: fixed;
    bottom: 50px;
    left: 30px;
    display: none;
}

@media (max-width: 768px) {
    nav.menu {
        bottom: auto;
        top: 82px;
        left: 6px;
    }
}

.no-js .menu {
    display: none;
}

.menu__bg {
    /*border-right: 1px solid var(--color-menu-border);*/
    pointer-events: none;
    /*background: linear-gradient(#2b192c, #1a191c);*/
    background:transparent !important;
    grid-area: 1 / 1 / 3 / 6;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    transform: translateX(-100%)translateX(20vw)translateX(11vh);
}

.menu__button {
    cursor: pointer;
    pointer-events: auto;
    grid-area: 1 / 1 / 2 / 3;
    place-self: start;
    margin: 1.25rem;
    padding: 0;
    position: fixed;
    top: 19px;
    left: 38px;
}

@media (max-width: 768px) {
    .menu__button {
        top: 13px;
        left: auto;
        right: 20px;
    }
}


.menu__button path {
    stroke: #dbb59b;
    fill: none;
}

.menu__button:hover path, .menu__button:focus-visible path {
    stroke: var(--color-menu-hover);
}

.menu__button-cross {
    opacity: 0;
}

.menu__items {
    pointer-events: none;
    flex-direction: column;
    grid-area: 2 / 1 / 2 / 6;
    justify-content: start;
    align-items: flex-start;
    margin: 1vh 0;
    padding-bottom: 1rem;
    display: flex;
    position: relative;
}

.menu--open .menu__items {
    pointer-events: auto;
}

.menu__item {
    text-transform: uppercase;
    font-family: space-mono, monospace;
    font-weight: 400;
    font-size: 9vh;
    color: #dbb59b;
    cursor: pointer;
    line-height: .9;
    position: relative;
}

@media (max-width: 768px) {
    .menu__items {
        margin: 1em;
    }
    .menu__item {
        font-size: 5vh;
    }
}

.menu__item a::before {
    display: none !important;
}

.menu__item span {
    pointer-events: none;
}

.menu__item .letter-wrap__inner span:first-child, .menu__item .letter-wrap__inner span, .menu__item .letter-wrap span.char {
    transition: color .2s;
}

.menu--open .menu__item:hover .letter-wrap__inner span:first-child, .menu--open .menu__item:hover .letter-wrap__inner span, .menu--open .menu__item:hover .letter-wrap span.char, .menu--open .menu__item:focus .letter-wrap__inner span:first-child, .menu--open .menu__item:focus .letter-wrap__inner span, .menu--open .menu__item:focus .letter-wrap span.char {
    color: #dbb59b;
}

.menu--open .menu__item:focus-visible {
    outline: 2px solid #dbb59b;
    background: none;
}

.menu__item.splitting .word {
    display: flex;
}

.menu__item.splitting .char {
    transform-origin: 50% 100%;
    will-change: transform, color;
    flex: none;
    justify-content: center;
    display: flex;
}

.menu__item .char {
    color: #fff;
}

.letter-wrap, .letter-wrap__inner span, .menu__item.splitting .char {
    width: calc(9vh * .6666);
    will-change: transform, color;
    justify-content: center;
    display: flex;
}

@media (max-width: 768px) {
    .letter-wrap, .letter-wrap__inner span, .menu__item.splitting .char {
        width: calc(5vh * .6666);
    }
}

.letter-wrap__inner span:first-child {
    color: #fff;
}

.letter-wrap {
    height: calc(9.5vh * .8833);
    flex: none;
    justify-content: center;
    align-items: flex-end;
    display: flex;
    overflow: hidden;
}

@media (max-width: 768px) {
    .letter-wrap, .letter-wrap__inner span, .menu__item.splitting .char {
        height: calc(6vh * .8833);
    }
}

.letter-wrap > span:not(.letter-wrap__inner) {
    opacity: 0;
}

.letter-wrap__inner {
    flex-direction: column;
    height: fit-content;
    display: flex;
}

.menu__tagline {
    text-transform: none;
    text-align: right;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    grid-area: 1 / 4 / 2 / 5;
    margin: 33.5vh 0 0 5.5vw;
    font-family: kudryashev-d-excontrast-sans, sans-serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 300;
    display: none;
    transform: rotate(180deg);
}

.content {
    /*    width: calc(100% + 36vw);
        margin-left: -36vw;
        overflow-y: auto;*/
}

.content__column {
    padding: 100px;
}

.title1 {
    display: inline-block;
    font-size: 44px;
    line-height: 50px;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    margin-bottom: 25px;
}

.title2 {
    font-size: 21px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 80px;
}

ul {
    padding-left: 40px;
    margin-bottom: 55px;
}

@media (max-width: 768px) {
    ul {
        margin-bottom: 35px;
    }
}

li {
    font-size: 16px;
    line-height: 25px;
    list-style: none;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    li {
        font-size: 14px;
        line-height: 22px;
    }
}

li::before {
    display: inline-block;
    content: "";
    min-width: 4px;
    min-height: 4px;
    max-width: 4px;
    max-height: 4px;
    border-radius: 100%;
    background-color: #dbb59b;
    position: relative;
    top: -3px;
    left: -10px;
}

li:last-child {
    margin-bottom: 0;
}


@media screen and (width >= 54em) {
    body {
        --size-menu: 15vh;
    }

    main {
        grid-template-rows: 100%;
        grid-template-areas: "side side side content content content";
        height: 100vh;
        overflow: hidden;
    }

    .menu {
        border: 0;
        grid-area: 1 / 1 / 2 / 6;
        grid-template-rows: 100%;
    }

    .menu__items {
        grid-area: 1 / 3 / 2 / 6;
        justify-content: center;
        margin: 1vh 0 0;
        padding-bottom: 0;
    }

    .frame {
        pointer-events: none;
        background: none;
        grid-template: ". sponsor"
            ". arrow"
            "title links"
            / 50% 50%;
        grid-area: content;
        align-content: space-between;
        display: grid;
    }

    .frame:after {
        content: "";
        pointer-events: none;
        z-index: 10;
        opacity: 0;
        background: #000;
        width: 100%;
        height: 100%;
        transition: opacity 1s ease-in-out .3s;
        position: absolute;
        top: 0;
        left: 0;
    }

    .menu--open ~ .frame:after {
        opacity: .8;
        pointer-events: auto;
        transition-delay: 0s;
    }

    .button-next {
        display: grid;
    }

    .menu__tagline {
        display: block;
    }

    .menu__button {
        grid-area: 1 / 1 / 2 / 2;
        place-self: center;
        margin: 0;
    }
}
