.navbar {
    display: flex; display: -ms-flexbox; -moz-display: flex;;
    align-items: center;
    background-color: white;
    padding: 1.5rem 4rem 1.5rem 3.5rem;
    z-index: 1;
    justify-content: center;
}

.navbar-logo {
    /* margin-right: auto; */
    display: flex; display: -ms-flexbox; -moz-display: flex;;
    align-items: center;
}
.navbar-items{margin-left: 40px;}

.navbar-logo img {
    width: auto;
    height: 74px;
    cursor: pointer;
}

.navbar-logo a h2 {
    color: #7a7a7a;
    margin: 0 1rem;
    white-space: nowrap;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 100;
}

.navbar-items a {
    color: #0575c1;
    padding-right: .5rem;
    padding-left: .5rem;
    font-size: 15px;
    position: relative;
    cursor: pointer;
    /* text-transform: uppercase; */
    font-weight: 700;
    font-family: "Roboto", Helvetica, Arial, sans-serif !important;
}


.navbar-items a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #67edff;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 1s;
}

.navbar-items a:hover::after{
    width: 100%;
}

.navbar-side {
    position: fixed;
    background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6));
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* transition: all 1s; */
    z-index: -1;
    opacity: 0;
}

.navSide-container{
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex; display: -ms-flexbox; -moz-display: flex;;
    flex-direction: column; -ms-flex-direction: column;
    width: 300px;
    background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6));
    transition: all 1s;
}

.navSide-container a {
    text-decoration: none;
    padding: 15px 10px;
    text-align: right;
    color: #eee;
    text-shadow: 1px 1px 1px #444;
    font-size: 1.5rem;
    transition: all .5s;
    z-index: 5;
}

.navSide-container a:hover {
    background: MediumSeaGreen
}

.navSide-container a:first-of-type {
    /*background: #222;*/
}


@media all and (max-width: 1210px){

    .navbar-items {
        display: none;
    }

    .menu-toggle {
        padding: 1rem;
        padding-right: 0;
        cursor: pointer;
        margin-left: auto;
    }

    .hamburger,
    .hamburger:after,
    .hamburger:before {
        content: '';
        display: block;
        background: #7a7a7a;
        height: 3px;
        width: 1.5em;
        border-radius: 3px;
        cursor: pointer;
    }

    .hamburger:before{
        transform: translateY(-6px);
    }

    .hamburger:after{
        transform: translateY(3px);
    }

    .site-nav--open {
        display: block;
    }

}

@media (max-width: 600px) {
    .navbar {
        padding: 10px;
    }

    .navbar-logo img {
        width: auto;
        height: 50px;
    }

    .navbar-logo a h2 {
        font-size: calc(100vw / 100 * 8);
        display: none;
    }
}


