@media screen and (min-width: 1400px) {
    /* codigo do menu */
div#mobile-menu {
    display: none;
}

#menu-mobile-content {
    display: none;
}
  }
  @media screen and (min-width: 1600px) {
    /* codigo do menu */
div#mobile-menu {
    display: none;
}

#menu-mobile-content {
    display: none;
}
  }
  @media screen and (min-width: 1900px) {
 /* codigo do menu */
div#mobile-menu {
    display: none;
}

#menu-mobile-content {
    display: none;
}
  }
@media (pointer: coarse) {
        div#mobile-menu {
        display: flex;
        justify-content: end;
        width: 47%;
    }

    .pbmit-logo-menuarea.d-flex.align-items-center {
        display: flex !important;
        justify-content: space-between;
        width: 100%;
    }

    .bar1, .bar2, .bar3 {
        width: 35px;
        height: 5px;
        background-color: white;
        margin: 6px 0;
        transition: 0.4s;
    }

    .change .bar1 {
        transform: translate(0, 11px) rotate(-45deg);
    }
    
    .change .bar2 {opacity: 0;}
    
    .change .bar3 {
        transform: translate(0, -11px) rotate(45deg);
    }
    div#menu-mobile-content {
        position: fixed;
        left: 0;
        z-index: 999;
        background: #424242;
        width: 75vw;
        height: 100%;
        display: none;
        bottom: 0 !important;
    }
    div#menu-mobile-content a {
        color: white;
        font-weight: 600;
    }
    div#menu-mobile-content li {
        list-style: none;
        color: white;
        padding-top: 1em;
    }
    .menu-mobile-image {
        width: 8em;
        margin: 0 auto;
    }
}