@import url(https://fonts.googleapis.com/css?family=Space+Mono:400,700);


/* color variables */
:root {
    --color-primary: black;
    --color-secondary: indigo;
    --color-light: #eeeeee;
    --color-dark: black;
}

@keyframes color-animate {
    0% { color: #36fa98; }
    100% { color: #b2fa36; }
}

@keyframes bg-color-animate {
    0% { background-color: #36fa98; }
    100% { background-color: #b2fa36; }
}

@keyframes fill-color-animate {
    0% { fill: #36fa98; }
    100% { fill: #b2fa36; }
}

* {
/* outline: solid 1px red; */
}

.color-brand {
    color: var(--color-dark);
}

.text-left {
    display: inline-block;
    text-align: left
}

.text-center {
    display: inline-block;
    text-align: center
}

.text-right {
    display: inline-block;
    text-align: right
}

.left {
    float: left
}

.right {
    float: right
}

body {
    font-family: "Space Mono", mono;
    background: var(--color-light);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -ms-overflow-style: none
}

button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -webkit-appearance: none;
}

hr {
    width: 100%;
    border: none;
    border-bottom: 2px dashed var(--color-secondary);
}

:focus {
    outline: none
}

.fx {
    opacity: 0;
    transition: all .75s cubic-bezier(.6, .04, .98, .335)
}

.fx-done {
    opacity: 1
}

.animate {
    display: inline-block;
}

.panel {
    margin: 0;
    padding: 100px 20px
}

@media(max-width:767px) {
    .panel {
        padding: 50px 20px
    }
}

.wrapper {
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
}

.flexblock {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.panel--home {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: var(--color-light);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%; */
}

@media(max-width:767px) {
    .panel--home {
    }
}

.panel--about,
.panel--home .wrapper {
    position: relative
}

.panel--about {
    min-height: 75vh;
    margin-top: 0;
    color: var(--color-dark);
    background: var(--color-light);
}

.panel--about .about__svg {
    position: absolute;
    top: 50%;
    margin-top: -80px;
    width: 160px;
    height: 160px
}

.panel--about .about__svg-1 {
    left: 20px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

@media(max-width:767px) {
    .panel--about .about__svg-1 {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        left: 50%;
        margin-left: -80px
    }
}

.panel--about .about__svg-2 {
    right: 20px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

@media(max-width:767px) {
    .panel--about .about__svg-2 {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        left: 50%;
        right: auto;
        margin-left: -80px
    }
}

@media(max-width:767px) {
    .panel--about .about__svg {
        position: relative;
        margin: 20px auto;
        width: 80px;
        height: 80px;
        left: auto;
        top: auto
    }
}

.panel--residents {
    background: var(--color-primary)
}

.panel--program {
    color: var(--color-light);
    background: var(--color-dark);
}

.panel--program .title {
    color: var(--color-light);
}

.panel--program h3 {
    color: var(--color-light);
}

.panel--gallery {
    width: 100%;
    overflow: hidden;
    padding: 0;
    background: var(--color-light);
    color: var(--color-dark);
}

.panel--gallery .wrapper {
    max-width: 100%
}

.panel--gallery .title {
    display: none
}

.panel--map {
    background: var(--color-primary);
    color: var(--color-light);
    padding: 0;
    max-width: 100%;
}

.panel--arrival {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.panel--arrival hr {
    border: none;
    border-bottom: 2px dashed var(--color-light);
    margin: 50px 0;
}

.panel--usefull {
    background: var(--color-light);
    color: var(--color-dark);
}

.panel--usefull .svg__item {
    display: inline-block;
    object-fit: contain;
    margin: 30px 40px;
    width: 150px;
    height: 100px;
    /* filter:invert(100%); */
}

.panel--badges {
    background: var(--color-dark);
    color: var(--color-light);
}

@media(max-width:767px) {
    .panel--logos {
        padding: 50px
    }
}

@media(max-width:767px) {
    .panel--logos .title {
        margin-bottom: 80px
    }
}

.panel--logos .logos__item {
    display: inline-block;
    object-fit: contain;
    margin: 30px 40px;
    width: 150px;
    height: 100px;
    filter:invert(100%);
}

@media(max-width:767px) {
    .panel--logos .logos__item {
        display: block;
        margin: 30px auto;
        height: 50px;
        filter:invert(100%);
    }
}

.panel--blog {
    color: var(--color-dark);
    background: var(--color-light);
}

.panel--lecturers {
    color: var(--color-dark);
    background-color: var(--color-light);
}

.panel--lecturers .title {
    position: relative;
}

.panel--lecturers .article--intro {
    position: relative;
}

.panel--lecturers .person {
    position: relative;
}

.hacktonaut {
    position: absolute;
    width: 700px; 
    left: -100px; 
}

.panel--logos {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.panel--contact {
    background: var(--color-light);
    color: var(--color-dark);
}

/* .panel .limiter {
    border-bottom-color: var(--color-secondary);
} */

.article {
    margin: 0 auto;
}

.article h2 {
    font-size: 20px;
    line-height: 30px;
}

.article p {
    font-size: 15px;
    line-height: 20px;
    font-family: "Space Mono", mono;

}

@media(max-width:767px) {
    .article p {
        display: block;
        margin: 10px auto 50px
    }
}

.article__links {
    margin-top: 20px
}

@media(max-width:767px) {
    .article__links {
        margin-top: 10px
    }
}

.article__links a {
    display: inline-block;
    margin: 4px;
    padding: 6px 10px;
    text-decoration: none;
    font-size: 11px;
    line-height: 9px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .15s ease-out;
    color: var(--color-light)
}

.article__links a:hover {
    padding: 6px 14px;
    margin: 4px 0;
    background: #666 !important
}

.article--about {
    max-width: 800px
}

.article--about__quote {
    max-width: 700px;
    margin: 0 0 50px
}

.article--about__quote p {
    font-size: 30px;
    line-height: 46px
}

.article--about__quote blockquote {
    color: #f6004f
}

.article--about p {
    font-family: "Space Mono", mono;
    font-size: 20px;
    line-height: 40px
}

@media(max-width:767px) {
    .article--about p {
        font-size: 20px;
        line-height: 40px
    }
}

@media(max-width:500px) {
    .article--about p {
        font-size: 15px;
        line-height: 26px
    }
}

.article--about a {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark);
    transition: all .2s ease-in
}

@media(max-width:767px) {
    .article--about a {
        font-size: 20px
    }
}

.article--about a:hover {
    color: var(--color-primary)
}

.article--arrival {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    margin: 0 4%;
}

.article--arrival h2 {
    /* color: var(--color-dark); */
}

@media(max-width:767px) {
    .article--arrival {
        display: block;
        width: 100%;
        margin: 40px 0
    }
}

.article--arrival .arrival__svg {
    margin: 0 auto 10px;
    width: 100px;
    height: 100px
}

@media(max-width:767px) {
    .article--arrival .arrival__svg {
        margin: 0 auto
    }
}

.article--arrival .arrival__svg path {
    fill: var(--color-dark)
}

.article--arrival .arrival__svg .bike-wheel {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite
}

.article--arrival .arrival__svg .bike-cloud,
.article--arrival .arrival__svg .bike-wheel {
    transform-box: fill-box;
    -webkit-transform-origin: center center;
    transform-origin: center center
}

.article--arrival .arrival__svg .bike-cloud {
    -webkit-animation: travel 10s linear infinite;
    animation: travel 10s linear infinite
}

.article--arrival .arrival__svg .bike-tree {
    -webkit-animation: travel 4s linear infinite;
    animation: travel 4s linear infinite
}

.article--arrival .arrival__svg .bike-tree,
.article--arrival .arrival__svg .train-track-1 {
    transform-box: fill-box;
    -webkit-transform-origin: center center;
    transform-origin: center center
}

.article--arrival .arrival__svg .train-track-1 {
    -webkit-animation: perspective .8s linear infinite;
    animation: perspective .8s linear infinite
}

.article--arrival .arrival__svg .train-track-2 {
    transform-box: fill-box;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation: perspective 1.2s linear infinite;
    animation: perspective 1.2s linear infinite
}

.article--arrival .arrival__svg .train-track-3 {
    -webkit-animation: perspective 1.6s linear infinite;
    animation: perspective 1.6s linear infinite
}

.article--arrival .arrival__svg .train-track-3,
.article--arrival .arrival__svg .van-wheel {
    transform-box: fill-box;
    -webkit-transform-origin: center center;
    transform-origin: center center
}

.article--arrival .arrival__svg .van-wheel {
    -webkit-animation: spin-reverse .4s linear infinite;
    animation: spin-reverse .4s linear infinite
}

.article--arrival p {
    font-family: "Space Mono", mono;
    font-size: 15px;
    line-height: 20px
}

@media(max-width:767px) {
    .article--arrival p {
        display: block;
        max-width: 80%;
        font-size: 15px;
        line-height: 20px
    }
}

.article--program {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    margin: 0 5% 100px
}

@media(max-width:767px) {
    .article--program {
        display: block;
        width: 100%;
        margin: 80px 0
    }
}

.article--program .article__flag {
    opacity: .5;
    font-size: 12px;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
}

.article--program h2 {
    color: var(--color-primary);
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration-line: underline;
    text-decoration-color: var(--color-light);
    text-decoration-skip-ink: none;
    text-decoration-thickness: 1.1em;
    text-underline-offset: -0.9em;
    margin-bottom: 10px;
}

.article--program h2.author {
    color: var(--color-light);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 3px;
    text-decoration-line: none;
    margin-top: 0;
    margin-bottom: 20px;
}

.article--program h3:empty {
    display: none
}

.article--program p {
    margin: 0 auto;
    font-size: 15px;
    line-height: 26px
}

.article--guide {
    /* display: inline-block; */
    vertical-align: top;
    width: 40%;
    margin: 0 5% 100px;
}

@media(max-width:767px) {
    .article--guide {
        display: block;
        width: 100%;
        margin: 80px 0
    }
}

.article--guide h2 {
    margin: 20px 0;
    font-size: 30px;
    font-weight: 400
}

.article--guide p {
    margin: 0 auto;
    font-size: 15px;
    line-height: 26px
}

.article--intro h2 {
    display: inline-block;
    vertical-align: top;
    font-size: 30px;
    font-weight: 400;
    line-height: 125%;
    width: 60%;
    margin: 0 0 100px;

    text-decoration-line: underline;
    text-decoration-color: var(--color-light);
    text-decoration-skip-ink: none;
    text-decoration-thickness: 1.3em;
    text-underline-offset: -0.9em;
}

@media(max-width:767px) {
    .article--intro h2 {
        width: 95%;
    }
}

.article--logos {
    margin: 100px 0 40px;
    flex-basis: 100%;
}

.article--title, .article--contact {
    flex-basis: 100%;
}

.article--logos h2 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 400;
    /* color: var(--color-dark); */
}

.article--logos h3:empty,
.article--logos p:empty {
    display: none
}

.article--logo {
    display: inline-block;
    vertical-align: middle;
    max-width: 15%;
    margin: 0 5%
}

@media(max-width:767px) {
    .article--logo {
        display: block;
        text-align: center;
        max-width: 100%;
        margin: 20px 0
    }
}

.article--logo h2:empty,
.article--logo h3:empty {
    display: none
}

.article--thanks {
    /* max-width: 550px */
}

.article--thanks p {
    margin: 5vh auto 40px;
    font-size: 12px;
    line-height: 20px
}

.article--contact p {
    margin: 80px;
    font-size: 12px;
    line-height: 20px
}

.article--contact a {
    font-size: 30px;
    color: var(--color-dark);
    transition: all .2s ease-in
}

@media(max-width:767px) {
    .article--contact a {
        font-size: 20px
    }
}

.article--contact a:hover {
    color: var(--color-primary)
}

.article--crafted p {
    margin-top: 80px;
    font-size: 12px;
    line-height: 20px
}

.article--crafted svg {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 50%;
    margin-top: 1px;
    margin-right: -73px;
    fill: red
}

.article--credits p {
    margin-top: 80px;
    font-size: 10px
}

.article--credits a {
    color: var(--color-dark)
}

@media(max-width:767px) {
    .blog .title {
        margin: 5vh 0 10vh
    }
}

.blog__post {
    display: flex;
    width: 100%;
    margin: 0 0 15vh;
    text-align: left;
    cursor: pointer;
    transition: all .2s ease-in-out
}

@media(max-width:767px) {
    .blog__post {
        margin: 0 0 10vh
    }
}

.blog__thumb {
    display: inline-block;
    margin: 25px 50px;
    min-width: 100px;
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: 50%;
    background-color: #543ae8;
    border-radius: 50%
}

@media(max-width:767px) {
    .blog__thumb {
        min-width: 32px;
        width: 32px;
        height: 32px;
        margin: 28px 25px 7px 0
    }
}

.blog__title {
    font-size: 80px;
    line-height: 85px;
    margin: 0;
    padding: 0;
    transition: all .2s ease-in-out
}

.blog__title:hover {
    -webkit-transform: translateX(20px);
    transform: translateX(20px)
}

@media(max-width:767px) {
    .blog__title {
        font-size: 40px;
        line-height: 45px
    }
}

.blog__subtitle {
    margin: 10px 0 0;
    padding: 0;
    font-size: 15px;
    font-weight: 400
}

.blog__label {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0;
    font-size: 12px;
    color: #543ae8;
    text-transform: uppercase;
    font-weight: 700
}

body.modal-active .blog__posts .blog__post {
    opacity: .05
}

.carousel {
    height: 700px;
}

.carousel-cell {
    height: 100%;
}

.carousel-cell img {
    /* filter: grayscale(100%); */
}

.hamburger--spin .hamburger-inner-1 {
    transition: top .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
    transition: top .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
    transition: top .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), -webkit-transform .22s cubic-bezier(.55, .055, .675, .19)
}

.hamburger--spin .hamburger-inner-2 {
    transition: top .1s ease-in .15s, opacity .41s ease-in
}

.hamburger--spin .hamburger-inner-3 {
    transition: top .1s ease-in .25s, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
    transition: top .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19);
    transition: top .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), -webkit-transform .22s cubic-bezier(.55, .055, .675, .19)
}

.hamburger--spin.is-active .hamburger-inner-1 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    top: 50%
}

.hamburger--spin.is-active .hamburger-inner-2 {
    opacity: 0;
    transition: top .1s ease-out, opacity .1s ease-out 1.2ms
}

.hamburger--spin.is-active .hamburger-inner-3 {
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: top .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
    transition: top .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
    transition: top .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s
}

.hamburger {
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    top: 15px;
    right: 15px;
    outline: none;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: .15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible
}

.hamburger[data-panel=home] {
    background-color: var(--color-light);
}

@media(max-width:767px) {
    .hamburger {
        right: 10px
    }

    .hamburger[data-panel=home] {
        background: none;
    }
}

body.menu-active .hamburger .hamburger-inner {
    background-color: var(--color-primary);
}

.hamburger[data-panel=home] .hamburger-inner,
.hamburger[data-panel=about] .hamburger-inner,
.hamburger[data-panel=lecturers] .hamburger-inner,
.hamburger[data-panel=map] .hamburger-inner,
.hamburger[data-panel=usefull] .hamburger-inner,
.hamburger[data-panel=contact] .hamburger-inner {
    background-color: var(--color-primary);
}

.hamburger[data-panel=gallery] .hamburger-inner,
.hamburger[data-panel=program] .hamburger-inner,
.hamburger[data-panel=location] .hamburger-inner,
.hamburger[data-panel=partners] .hamburger-inner,
.hamburger[data-panel=arrival] .hamburger-inner,
.hamburger[data-panel=logos] .hamburger-inner {
    background-color: var(--color-light);
}

.hamburger-box {
    width: 40px;
    height: 25px;
    display: inline-block;
    position: relative
}

.hamburger-inner {
    display: block
}

.hamburger-inner-1,
.hamburger-inner-2,
.hamburger-inner-3 {
    width: 100%;
    height: 5px;
    background-color: var(--color-primary);
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: .25s;
    transition-timing-function: ease
}

.hamburger-inner-1 {
    top: calc(50% - 10px);
    bottom: auto
}

.hamburger-inner-2 {
    top: 50%
}

.hamburger-inner-3 {
    top: calc(50% + 10px)
}

#sketch {
    /* position: absolute;
    z-index: 2;
    top: 0;
    left: 0; */
}

.home  {
    width: 25vw;
    padding: 0 20px;
}

.head {
    display: grid; 
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    width: 100vw;
    height: 100vh;
    /* margin: 0; */
}

.head h2 {
    color:var(--color-primary);
    font-weight: bold;
    text-align: center;
}

.head h2.top {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 3;
    align-self: start;

    font-size: 40px;
    letter-spacing: 1px;
    line-height: 50px;

    text-decoration-line: underline;
    text-decoration-color: var(--color-light);
    text-decoration-skip-ink: none;
    text-decoration-thickness: 1.1em;
    text-underline-offset: -0.9em;
}

.head h2.bottom {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 1;
    grid-column-end: 3;
    align-self: end;

    font-size: 40px;
    letter-spacing: 1px;
    line-height: 50px;

    text-decoration-line: underline;
    text-decoration-color: var(--color-light);
    text-decoration-skip-ink: none;
    text-decoration-thickness: 1.1em;
    text-underline-offset: -0.95em;
}

.head h2.left {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 2;
    justify-self: start;

    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: 44px;
    letter-spacing: -22px;
    line-height: 50px;

    text-decoration-line: underline;
    text-decoration-color: var(--color-light);
    text-decoration-skip-ink: none;
    text-decoration-thickness: 0.8em;
    text-underline-offset: -0.9em;
}

.head h2.right {
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: 2;
    grid-column-end: 3;
    justify-self: end;

    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 44px;
    letter-spacing: -22px;
    line-height: 50px;

    text-decoration-line: underline;
    text-decoration-color: var(--color-light);
    text-decoration-skip-ink: none;
    text-decoration-thickness: 0.8em;
    text-underline-offset: -0.9em;
}

@media(max-width:767px) {
    .head h2.left,
    .head h2.right {
        margin: 0 20px;
        font-size: 28px;
        letter-spacing: -15px;
        line-height: 32px;
    }

    .head h2.top,
    .head h2.bottom {
        margin: 15px 60px;
        font-size: 24px;
        letter-spacing: 1px;
        line-height: 26px;
        text-decoration-thickness: 1.1em;
        text-underline-offset: -0.9em;
    }
}

.head h4 {
    margin: 160px auto 80px;
    font-size: 27px;
    line-height: 52px;
    font-weight: 400;
    color: var(--color-light);
    letter-spacing: 3px;
    text-transform: uppercase
}

@media(max-width:767px) {
    .head h4 {
        max-width: 520px;
        margin: 120px auto;
        font-size: 20px;
        line-height: 34px
    }
}

.head h4 span {
    display: block;
    text-transform: none
}

.head p {
    margin: 0 auto;
    padding: 0;
    font-size: 20px;
    line-height: 50px;
    font-weight: 400;
    text-transform: uppercase;
    max-width: 820px
}

.head__svg {
    position: absolute;
    top: 80px;
    left: 50%;
    margin-left: -230px;
    width: 930px;
    height: 300px
}

@media(max-width:767px) {
    .head__svg {
        width: 400px;
        top: -50px;
        margin-left: -150px
    }
}



@media(max-width:1020px) {
    .head p {
        font-size: 15px;
        line-height: 30px
    }
}

@media(max-width:767px) {
    .head p {
        margin: 0 auto
    }
}

@media(max-width:500px) {
    .head p {
        font-size: 12px;
        line-height: 20px
    }
}

.head p>span {
    display: inline-block;
    padding: 5px 20px;
    margin: 0 auto;
    line-height: 30px;
    color: var(--color-dark);
    letter-spacing: 1px
}

@media(max-width:767px) {
    .head p>span {
        padding: 3px 10px;
        margin: 5px auto;
        line-height: 25px
    }

    .head p>span:nth-child(2) {
        max-width: 430px
    }
}

@media(max-width:500px) {
    .head p>span {
        line-height: 20px
    }

    .head p>span:nth-child(2) {
        max-width: 350px
    }
}

.head__slots {
    position: fixed;
    bottom: 5px;
    left: 20px;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: none !important
}

.head__slots-content {
    background: none !important;
    padding: 0 !important
}

#map {
    /* margin: 10px 0 */
    width: 100%;
    height: 80vh;
    /* filter: grayscale(1); */
}

.menu {
    position: fixed;
    z-index: 9998;
    height: 100vh;
    right: -100vw;
    display: flex;
    flex-direction: column;
    transition: all .37s cubic-bezier(.165, .84, .44, 1);
    width: 50%;
    padding-top: 75px;
    color: currentColor;
    background-color: var(--color-light);
    border-left: solid 3px var(--color-primary);
}

@media(max-width:1020px) {
    .menu {
        width: 65%;
        padding-top: 0;
        justify-content: center
    }
}

@media(max-width:767px) {
    .menu {
        width: 75%;
        padding-top: 0;
        justify-content: center;
    }
}

@media(max-width:500px) {
    .menu {
        width: 80%;
        padding-top: 0;
        justify-content: center
    }
}

.menu.is-active {
    right: 0;
    overflow-y: auto;
    /* box-shadow: -10px 0 20px rgba(0, 0, 0, .1) */
}

.menu__item {
    position: relative;
    display: inline-block;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
    transition: all .37s cubic-bezier(.165, .84, .44, 1)
}

.menu__item.active {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

span.menu__item-wrap.selected:before{
    content: '‹';
    display: block;
    position: absolute;
    right: 30px;
}

.menu__item--seasons {
    margin: 0 0 20px 20px
}

.menu__item--seasons .menu__item-wrap {
    margin: 0 20px;
    padding: 20px 0 0;
    font-size: 30px;
    line-height: 30px;
    text-decoration: none;
    color: var(--color-dark);
}


@media(max-width:767px) {
    .menu__item--seasons .menu__item-wrap {
        font-size: 20px;
        line-height: 20px;
    }
}

@media(max-width:500px) {
    .menu__item--seasons .menu__item-wrap {
        margin: 0 10px;
        font-size: 20px;
        line-height: 20px;
    }
}

.menu__item--seasons .menu__item-wrap.active {
    padding-bottom: 4px;
    border-bottom: 2px solid currentColor;
}

.menu__item-wrap {
    display: inline-block;
    margin: 0;
    padding: 15px 40px;
    font-family: "Space Mono", mono;
    font-size: 50px;
    line-height: 50px;
    font-weight: 400;
    cursor: pointer;
    /* transition: all .2s ease-in-out; */
}

@media(max-width:1020px) {
    .menu__item-wrap {
        font-size: 30px;
        line-height: 30px
    }
}

@media(max-width:767px) {
    .menu__item-wrap {
        font-size: 20px;
        line-height: 20px
    }
}

@media(max-width:500px) {
    .menu__item-wrap {
        font-size: 20px;
        line-height: 20px
    }
}

.menu__item-wrap:hover {
    color: var(--color-primary);
    font-weight: bold;
}

.person {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    margin: 0 4% 80px
}

@media(max-width:767px) {
    .person {
        width: 46%;
        margin: 0 2% 80px
    }
}

@media(max-width:500px) {
    .person {
        width: 98%;
        margin: 0 1% 80px
    }
}

.person--big {
    width: 41%
}

@media(max-width:1020px) {
    .person--big {
        width: 41%;
        margin: 0 4% 80px
    }
}

@media(max-width:767px) {
    .person--big {
        width: 98%;
        margin: 0 1% 80px
    }
}

.person--big h2 {
    font-size: 30px
}

@media(max-width:767px) {
    .person--big h2 {
        min-height: auto
    }
}

.person--big img {
    width: 200px;
    padding: 10px;
    margin: 20px auto
}

@media(max-width:767px) {
    .person--big img {
        margin: 20px auto 40px
    }
}

.person--big p {
    font-size: 20px;
    line-height: 34px
}

@media(max-width:767px) {
    .person--big p {
        display: block;
        max-width: 85%;
        margin: 10px auto 50px;
    }
}

@media(max-width:500px) {
    .person--big p {
        display: block;
        max-width: 85%;
        margin: 10px auto 50px;
        font-size: 15px;
        line-height: 26px;
    }
}

.person--big .person__links a:hover {
    padding: 6px 14px;
    margin: 4px 0;
    background: var(--color-secondary);
}

.person__image-placeholder {
    width: 190px;
    height: 190px;
}

@media(max-width:767px) {
    .person__image-placeholder {
        width: 175px;
        height: 175px;
    }
}

.person img {
    display: block;
    width: 150px;
    margin: 10px auto 30px;
    border-radius: 50%;
}

.person h2 {
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration-line: underline;
    text-decoration-color: var(--color-light);
    text-decoration-skip-ink: none;
    text-decoration-thickness: 1.5em;
    text-underline-offset: -1.1em;
}

@media(max-width:767px) {
    .person h2 {
        min-height: 75px
    }
}

@media(max-width:500px) {
    .person h2 {
        min-height: auto
    }
}

.person p {
    margin: 0 auto;
    max-width: 600px;
    font-size: 15px;
    line-height: 25px;
    font-family: "Space Mono", mono
}

@media(max-width:767px) {
    .person p {
        display: block;
        max-width: 90%;
        margin: 10px auto 50px
    }
}

@media(max-width:500px) {
    .person p {
        max-width: 100%;
        margin: 10px auto 20px
    }
}

.person__links {
    margin-top: 20px
}

@media(max-width:767px) {
    .person__links {
        margin-top: 10px
    }
}

.person__links a {
    display: inline-block;
    margin: 4px;
    padding: 6px 10px;
    text-decoration: none;
    font-size: 11px;
    line-height: 9px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all .15s ease-out;
    color: var(--color-light)
}

.person__links a:hover {
    padding: 6px 14px;
    margin: 4px 0;
    background: #666 !important
}

.title {
    margin: 10px 0 80px;
    font-size: 70px;
    line-height: 70px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: "Space Mono", mono;
    /* color: var(--color-dark); */
}

@media(max-width:767px) {
    .title {
        letter-spacing: 3px;
        max-width: 100%;
        margin: 10px auto 50px;
        font-size: 50px;
        line-height: 50px
    }
}

@media(max-width:500px) {
    .title {
        letter-spacing: 3px;
        max-width: 90%;
        margin: 10px auto 50px;
        font-size: 30px;
        line-height: 30px
    }
}
