:root{
    --nav-h:80px
}
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    text-align: center;
    height: var(--nav-h);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
    background-color: #007D7D;
    z-index: 999;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
}

.nav-inner .logo {
    height: var(--nav-h);
    display: flex;
    align-items: center;
}

ul#menu {
    padding: 0;
    margin: 0;
    right: 0;
    display: flex;
}

ul#menu li {
    display: block;
    width: 130px;
    height: var(--nav-h);
    color: #000;
    margin: 0;
    padding: 0;
}

ul#menu li a {
    display: flex;
    width: 100%;
    height: 100%;
    color: #000;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: color 0.2s ease-in-out;
}

ul#menu a:hover {
    color: #fff;
}

ul#menu a:after {
    content: '';
    height: 0;
    transition: height 0.2s ease-in-out;
}

ul#menu a:hover:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}

ul#menu a.active {
    background-color: #eb5e52;
    color: #fff;
}

#mclick {
    display: none;
}

@media only screen and (max-width: 768px) {
    a#mclick {
        height: var(--nav-h);
        display: flex;
        align-items: center;
    }

    a#mclick:after {
        content: '';
        display: block;
        width: 2rem;
        height: 2rem;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g fill="%23ffffff"><path d="M0 64H448V96H0V64zM0 224H448v32H0V224zM448 384v32H0V384H448z"/></g></svg>');
    }

    a#mclick.close:after {
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><g fill="%23ffffff"><path d="M420.7 36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6L246.6 256 443.3 452.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L224 278.6 27.3 475.3c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6L201.4 256 4.7 59.3c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0L224 233.4 420.7 36.7z"/></g></svg>');
    }

    .nav-inner {
        flex-wrap: wrap;
    }

    ul#menu {
        position: absolute;
        top: var(--nav-h);
        width: 100%;
        right: -100%;
        height: calc(100vh -  var(--nav-h));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 56, 56, 1);
        transition: right 0.2s ease;
    }

    ul#menu li {
        width: 70%;
    }

    ul#menu.mOpen {
        right:0;
    }

    ul#menu li a {
        border-bottom: 1px solid #007d7d;
        line-height: 60px;
        height: 60px;
        margin: 0 auto;
        background: #fff;
        color: #007d7d;
        font-size: 24px;
    }

    ul#menu li a.active {
        background: #fff;
        color: #007d7d;
    }
}