menu {
    background: var(--main-color);
    
    
}

menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

menu .container .logo img {
    background: var(--main-color);
    width: 370px;
    position: absolute;
    padding-left: 1em;
    padding-right: 1em;
    top: 0;
    padding-top: 1em;
}
menu .container .logo img:before
{
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 102px;
    background-color: #cc6119;
    transform: skew(-25deg,0deg);
    z-index: 9999;
}

menu .container .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

menu .container .nav li {
    padding-left: 26px;
}

menu .container .nav li a {
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

menu .container .nav li a:hover {
    color: var(--yellow);
}

.active-menu {
    color: var(--yellow) !important;
}

menu .icon-nav {
    display: none;
}

.change .bar1 {
    -webkit-transform: rotate(-41deg) translate(-8px, 5px);
    transform: rotate(-41deg) translate(-8px, 5px)
}

.change .bar2 {
    opacity: 0;
}


.change .bar3 {
    -webkit-transform: rotate(40deg) translate(-8px, -7px);
    transform: rotate(40deg) translate(-8px, -7px);
}

@media only screen and (max-width: 1200px) {
    .nav {
        display: flex;
        position: fixed;
        top: -150%;
        left: 0;
        width: 100%;
        height: auto;
        text-align: left;
        transition: .3s ease;
        overflow: auto;
        z-index: 10;
        flex-direction: column;
        background: var(--main-color);
    }

    .active-menu {
        top: 65px;
        opacity: 1;
    }

    .active-menu li:first-child {
        border-top: 1px solid var(--yellow);
    }

    menu .container .nav li {
        width: 100%;
        flex: 0;
        padding-top: 1em;
        padding-bottom: 1em;
    }

    .show-menu {
        position: fixed;
        top: 0;
        height: 100%;
        z-index: 999;
        background: #fff;
        flex-flow: column;
    }

    menu .container {
        padding: 0;
    }

    menu .logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 100;
        padding: 10px 15px;
    }

    menu .icon-nav {
        display: inline-block;
        cursor: pointer;
    }

    .bar1, .bar2, .bar3 {
        width: 35px;
        height: 4px;
        background: var(--yellow);
        margin: 6px 0;
        transition: 0.4s;
    }

    /*menu .container .nav {*/
        /*display: none;*/
        /*width: 100%;*/
        /*flex-direction: column;*/
        /*justify-content: flex-start;*/
        /*flex: 1;*/
        /*z-index: 999;*/
        /*overflow: auto;*/
    /*}*/

    /*menu .container .nav li {*/
        /*padding: 40px 0;*/
    /*}*/

    /*.active-menu-mb {*/
        /*background: var(--black2);*/
    /*}*/

    /*.active-menu-mb2 {*/
        /*background: var(--black);*/
    /*}*/
}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 576px) {
    menu .logo {
        padding: 10px 10px;
    }

    menu .container .logo img {
        width: 200px;
    }

    .active-menu {
        top: 55px;
    }
}

@media only screen and (max-width: 480px) {
    menu .logo {
        padding: 10px 10px;
    }
}