﻿html {
    font-family: Roboto, Arial, sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    margin: 0;
}

    body.has-active-menu {
        overflow: hidden;
    }

nav {
    background: #646652;
    display: flex;
    height: 4em;
    margin: 0 auto;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    right: 0;
}

.top-nav .logo {
    position: absolute;
    top: 15px;
    left: 30px;
    z-index: 99;
}

.top-nav .fullscreen-bg-video {
    background-size: cover;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
}

.top-nav .left {
    height: 100vh;
    width: 50vw;
    position: relative;
    transition: all 0.4s linear;
    transform: translateX(-125vw);
    background-color: #363636;
    background-repeat: no-repeat;
    background-size: cover !important;
    z-index: 100;
}

.top-nav .right {
    height: 100vh;
    width: 50vw;
    position: relative;
    transition: all 0.4s linear;
    transform: translateX(125vw);
    background: #646652;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100;
    overflow-y: scroll;
}

    .top-nav .right .items {
        list-style-type: none;
    }

        .top-nav .right .items a {
            text-decoration: none;
            display: block;
            font-weight: 900;
            font-size: 3rem;
            -webkit-text-stroke: 2px #ffffff;
            text-stroke: 2px #fff;
            -webkit-text-fill-color: transparent;
            background-size: 200% 100%;
            background-position: 100%;
            opacity: 0.65;
            text-transform: uppercase;
            transition: all 0.2s linear;
            margin-bottom: 0.15em;
        }

            .top-nav .right .items a:hover {
                opacity: 1;
            }

.mobile-only-logo {
    display: none !important;
}

/*Navigation/Hamburger button*/
.button-wrapper {
    position: absolute;
    top: -6px;
    right: 4em;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 101;
    height: auto;
}

#button-wrapper {
    -webkit-appearance: none;
    background: none;
    border: 0;
    height: 70px;
    width: 70px;
    z-index: 101;
}

    #button-wrapper:focus {
        outline: 1px dotted #444;
    }

.menu-button {
    text-decoration: none;
    width: 50px;
    height: 5px;
    background: #fff;
    display: inline-block;
    position: relative;
    border: 0px;
    transition: 250ms ease;
}

    .menu-button:before, .menu-button:after {
        content: "";
        position: absolute;
        width: 100%;
        display: block;
        height: 5px;
        left: 0;
        background: #fff;
        transition: 250ms ease-out;
    }

    .menu-button:before {
        transform: translateY(-15px);
    }

    .menu-button:after {
        transform: translateY(15px);
    }

.button-transform {
    animation: b-anim 1s;
    transform: rotate(45deg);
}

    .button-transform:before, .button-transform:after {
        transform: translateY(0px);
    }

    .button-transform:before {
        transform: rotate(-90deg);
    }

    .button-transform:after {
        opacity: 0;
    }

@keyframes b-anim {
    100% {
        transform: rotate(405deg);
    }
}

/*Screen size (1368 and down)*/
@media only screen and (max-width: 1368px) {
    .top-nav .right {
        display: block;
        width: 125vw;
    }
}

@media only screen and (max-width: 1180px) {
}

/* Medium devices (landscape tablets, 900px and down) */
@media only screen and (max-width: 900px) {
    .top-nav .left {
        display: none;
        position: unset;
    }

    .top-nav .right {
        height: 100vh;
        width: 100vw;
    }

        .top-nav .right .items a {
            font-size: 6.12vw;
        }
}

/* Medium devices (landscape tablets, 768px and down) */
@media only screen and (max-width: 768px) {
    /*Navigation*/
    .button-wrapper {
        top: -6px;
        right: 1em;
    }

    .top-nav .left {
        display: none;
        position: unset;
    }

    .top-nav .right {
        display: block;
        width: 125vw;
    }

        .top-nav .right .items {
            list-style-type: none;
            padding: 3em 0 0 1em;
        }

            .top-nav .right .items a {
                font-weight: 600;
                font-size: 6vw;
            }
}

/* Medium devices (landscape tablets,  (phones, 667px and down) */
@media only screen and (max-width: 667px) {
    .mobile-only-logo {
        display: block !important;
        width: 100%;
        object-fit: cover;
        z-index: -3;
        position: absolute;
    }

    .button-wrapper {
        top: -6px;
        right: 1em;
    }

    /*Navigation*/
    .top-nav .left {
        display: none;
        position: unset;
    }

    .top-nav .right {
        transform: translateX(125vw);
        width: 100vw;
    }

        .top-nav .right .items {
            list-style-type: none;
            padding: 3em 0 0 1em;
        }

            .top-nav .right .items a {
                text-decoration: none;
                color: #fff;
                display: block;
                font-weight: 600;
                font-size: 1.85rem;
                -webkit-text-stroke: unset;
                text-stroke: unset;
                -webkit-text-fill-color: #fff;
                background-size: 200% 100%;
                background-position: 100%;
                opacity: 0.65;
                text-transform: uppercase;
                transition: all 0.2s linear;
                margin-bottom: 0.15em;
            }
}

/* Extra small devices (phones, 375px and down) */
@media only screen and (max-width: 375px) {
    .top-nav .right {
        transform: translateX(125vw);
    }

        .top-nav .right .items a {
            font-weight: 600;
            font-size: 8vw;
        }
}