nav {
    
    width: 100%;
    margin: 0 auto;
    background: var(--red);
}

nav .otohungoanh-container{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1rem 0;
}

nav .otohungoanh-logo img {
    width: 80%;
    height: auto;
}
nav .otohungoanh-logo a
{
    text-align: left;
}

nav .otohungoanh-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav .otohungoanh-item {
    margin-left: 5rem;
}

nav .otohungoanh-item a {
    display: inline-block;
    font-size: 1.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.2rem;
    color: var(--priceprod);
    font-weight: 700;
}

nav .otohungoanh-item a:hover:before {
    right: 0;
}

nav .otohungoanh-item a:hover
{
    color: #000 !important;
    text-decoration: none;
}

.otohungoanh-active-menu {
    color: #000 !important;
    position: relative;
}

.otohungoanh-active-menu:hover:before {
    right: 100% !important;
}

menu .icon-nav {
    display: none;
}

.otohungoanh-change .otohungoanh-bar1 {
    -webkit-transform: rotate(-41deg) translate(-8px, 5px);
    transform: rotate(-41deg) translate(-8px, 5px)
}

.otohungoanh-change .otohungoanh-bar2 {
    opacity: 0;
}

.otohungoanh-change .otohungoanh-bar3 {
    -webkit-transform: rotate(40deg) translate(-8px, -7px);
    transform: rotate(40deg) translate(-8px, -7px);
}

@media only screen and (max-width: 1230px) {
    nav .otohungoanh-container {
        padding: 1.5rem;
    }
}

@media only screen and (max-width: 1200px) {
    .otohungoanh-show-menu {
        position: fixed;
        top: 0;
        height: 100%;
        z-index: 999;
        background: #fff;
        flex-flow: column;
    }

    nav {
        padding: 0;
    }

    nav .otohungoanh-container {
        padding: 0;
    }

    nav .otohungoanh-item {
        margin-left: 0;
    }

    nav .otohungoanh-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 100;
        padding: 1.5rem;
    }

    nav .otohungoanh-icon-nav {
        display: inline-block;
        cursor: pointer;
    }

    .otohungoanh-bar1, .otohungoanh-bar2, .otohungoanh-bar3 {
        width: 35px;
        height: 4px;
        background: #fff;
        margin: 0.6rem 0;
        transition: 0.4s;
    }

    nav .otohungoanh-container .otohungoanh-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        flex: 1;
        z-index: 999;
        overflow: auto;
    }

    nav .otohungoanh-container .otohungoanh-menu li {
        padding: 4rem 0;
    }

    .otohungoanh-active-menu-mb-t {
        background: var(--red);
    }

    .otohungoanh-active-menu-mb-b {
        background: var(--red);
    }
}

@media only screen and (max-width: 768px) {
    nav .otohungoanh-container .otohungoanh-menu li {
        padding: 2rem 0 !important;
        width: 100%;
        text-align: center;
    }
}



