@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Roboto:wght@400;700;900&display=swap');
/********menu-mobile*********/
#btn-menu-mobile {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 7px;
    left: 135px;
    z-index: 199;
    color: #ffffff;
    font-size: 25px;
}

#menu-mobile {
    display: none;
    width: 230px;
    background-color: #000000;
    padding: 10px 0;
    position: absolute;
    top: 39px;
    left: 0;
    z-index: 99999;
    text-align: center;
    font-size: 14px;
    -webkit-transition: opacity .3s ease,top 1s ease,-webkit-box-shadow .5s ease;
    transition: opacity .3s ease,top 1s ease,-webkit-box-shadow .5s ease;
    transition: opacity .3s ease,top 1s ease,box-shadow .5s ease;
    transition: opacity .3s ease,top 1s ease,box-shadow .5s ease,-webkit-box-shadow .5s ease;
}

#menu-mobile a {
    color: #ffffff;
    display: block;
    width: 100%;
    padding: 10px 0;
    background: url(../../img/padrao/sep-menu.png) no-repeat center bottom;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

a.destaque {
    background:#3e608a url(../../img/padrao/sep-menu.png) no-repeat center bottom !important;
}
a.destaque:hover {
    color: #000000 !important;
}

#menu-mobile a:hover, #menu-mobile a.active {
    color:#3e608a;
}

#menu-mobile a:last-child {
    background: none;
}

@media (max-width:768px){
    #btn-menu-mobile{
        display: table !important;
    }
}

@media (min-width:0px) and (max-width:479px){
    #btn-menu-mobile {
        width: 35px;
        font-size: 23px;
    }
    #btn-menu-mobile span, #btn-menu-mobile:before, #btn-menu-mobile:after {
        width: 25px;
        height: 3px;
    }
    #btn-menu-mobile span {
        top: 8px;
    }
    #btn-menu-mobile:after {
        bottom: 20px;
    }
    #btn-menu-mobile.active:before {
        width: 35px;
    }
    #btn-menu-mobile.active:after {
        width: 35px;
    }
}