.burger {
    position: absolute;
    z-index: 10;
    right: 2vw;
    top: 2vw;
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.burger__patty {
    width: 28px;
    height: 2px;
    margin: 0 0 8px 0;
    background: #888585;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.burger__patty:last-child {
    margin-bottom: 0;
}
.burger--close {
    color: #111111;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.burger--close .burger__patty:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(9px, 10px);
    transform: rotate(45deg) translate(9px, 10px);
}
.burger--close .burger__patty:nth-child(2) {
    opacity: 0;
}
.burger--close .burger__patty:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -4px);
    transform: rotate(-45deg) translate(5px, -4px);
}

.menu {
    position: fixed;
    top: 0;
    width: 100%;
    visibility: hidden;
}
.menu--active {
    visibility: visible;
}
.menu__brand, .menu__list {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    float: left;
    /*width: 50%;*/
    height: 100vh;
    overflow: hidden;
}
.menu__list {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    list-style-type: none;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__list a {
    line-height: 12.666vh;
    width: -webkit-fill-available;
    text-align: center;
    /*border-bottom: 1px solid #ececec;*/
    color: #6f6f6f;
    font-size: 1.15em;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.9rem;
}
.menu__list a:hover {
    background: #ff3a1a;
    border-left: 1px solid #ff3a1a;
    color:#fff;
    text-decoration: none;
}
.menu__list--active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.menu__brand {
    background: #ff3a1a;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.menu__brand--active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.menu__item {
    -webkit-transform: translate3d(500px, 0, 0);
    transform: translate3d(500px, 0, 0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__item--active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.menu__link:hover:before {
    width: 100%;
}
.menu .menu__item:nth-child(1) {
    transition-delay: 0.1s;
}
.menu .menu__item:nth-child(2) {
    transition-delay: 0.2s;
}
.menu .menu__item:nth-child(3) {
    transition-delay: 0.3s;
}
.menu .menu__item:nth-child(4) {
    transition-delay: 0.4s;
}
.menu .menu__item:nth-child(5) {
    transition-delay: 0.5s;
}
.menu .menu__item:nth-child(6) {
    transition-delay: 0.6s;
}

@media screen and (max-width: 970px) {
    ul.menu__list,
    div.menu__brand {
        float: none;
        width: 100%;
        min-height: 0;
    }
    ul.menu__list--active,
    div.menu__brand--active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .menu__list {
        height: 75vh;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    .menu__link {
        font-size: 24px;
    }

    .menu__brand {
        height: 25vh;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        transition: all 0.1ms cubic-bezier(0.23, 1, 0.32, 1) !important;
    }
    .menu__brand .logo {
        width: 90px;
        height: 90px;
    }
    .menu .menu__item:nth-child(1) {
        transition-delay: 0.1ms!important;
    }
    .menu .menu__item:nth-child(2) {
        transition-delay: 0.2ms!important;
    }
    .menu .menu__item:nth-child(3) {
        transition-delay: 0.3ms!important;
    }
    .menu .menu__item:nth-child(4) {
        transition-delay: 0.4ms!important;
    }
    .menu .menu__item:nth-child(5) {
        transition-delay: 0.5ms!important;
    }
    .menu .menu__item:nth-child(6) {
        transition-delay: 0.6ms!important;
    }
    .menu__item {
        transition: all 0.1ms cubic-bezier(0.23, 1, 0.32, 1) !important;
    }
    .menu__list {
        transition: all 0.1ms cubic-bezier(0.23, 1, 0.32, 1) !important;
    }
}

h1, h2, h3, p {
    margin: 0;
    font-weight: 400;
}

main {
    height: 100vh;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding: 8vw;
}
main h1 > a {
    color: white;
    text-decoration: none;
    font-size: 48px;
    font-weight: 300;
}

.support {
    position: fixed;
    bottom: 24px;
    color: rgba(0, 0, 0, 0.6);
}
