html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}
html {
    font-family: "helvetica neue", sans-serif;
}

.nav {
    
    text-align: right;
    height: 70px;
    line-height: 70px;
}
.menu {
    margin: 0 30px 0 0;
}
.menu a {
    clear: right;
    text-decoration: none;
    color: #fff;
    margin: 0 10px;
    line-height: 70px;
}

.menu a:hover, .menu a.active  {
    color:#000;
    font-weight: bold;
}

span {
    color: #000;
}

label {
    margin: 0 40px 0 0;
    font-size: 26px;
    line-height: 70px;
    display: none;
    width: 26px;
    float: right;
}
#toggle {
    display: none;
    color:#fff;
}

/* for desktop menu */
.desktop-menu .flex {
    align-items: center;
    width:90%;
    margin:0 auto;
}
.desktop-menu .flex .main-menu a, .desktop-menu .flex .login a {
    margin:0 20px;
    text-decoration: none;
}
.desktop-menu .flex .main-menu a.active {
    font-weight: bold;
}



@media only screen and (max-width: 768px) {
    label {
        display: block;
        cursor: pointer;
        margin:0;
    }
    .menu {
        text-align: center;
        width: 100%;
        display: none;
    }
    .menu a {
        display: block;
        border-bottom: 1px solid #EAEAEB;
        margin: 0;
        color:#000;
     
    }
    #toggle:checked + .menu {
        display: block;
    }
    .header {
        display:flex;
    }
    .header .col-2 {
        width:50%;
        flex:0 0 50%;
    }
    .header .menu {
        background:#fff;
        box-shadow: 1px 4px 12px 1px rgba(0,0,0,0.39);
-webkit-box-shadow: 1px 4px 12px 1px rgba(0,0,0,0.39);
-moz-box-shadow: 1px 4px 12px 1px rgba(0,0,0,0.39);
    }
    .desktop-menu {
        display: none;
    }
    
    
    
}
@media screen and (min-width: 767px) {
    .mobile-menu {
        display: none;
    }
    .desktop-menu {
        display:block;
    }
}









