#menu_mobile {
    display: none;
}

/* Overlay style */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    font-weight: normal;
    font-style: normal;
    z-index: 100;
}

/* Overlay closing cross */
.overlay .overlay-close {
    position: absolute;
    color: #000;
    border: none;
    background: transparent;
    width: 50px;
    height: 50px;
    font-size: 26px;
    top: 14px;
    left: 18px;
    outline: none;
    z-index: 100;
}

/* Menu style */
.overlay nav {
    position: relative;
    top: calc(50% - 240px);
    float: left;
    width: 100%;
    padding: 0;
    text-align: center;
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    width: 100%;
    position: relative;
    padding-top: 30px;
}

.overlay ul li {
    display: block;
    padding-bottom: 26px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.overlay ul li a {
    font-size: 24px;
    text-decoration: none !important;
    font-weight: 300;
    display: block;
    color: #000;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
    color: #000;
}

/* Effects */
.overlay-slidedown {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
    transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}

.overlay-slidedown.open {
    visibility: visible;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
}

@media screen and (max-height: 30.5em) {
    .overlay nav {
        height: 70%;
        font-size: 34px;
    }
    .overlay ul li {
        min-height: 34px;
    }
}

@media screen and (max-width: 992px) {
    /************** MENU ******************/
    #menu {
        display: none;
    }

    /************** MENU - MOBILE ******************/
    .logo_mobile {
        float: left;
        width: 80px;
        padding: 10px 0;
    }

    #menu_mobile {
        display: block;
        padding: 0 24px;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 100;
        background: rgb(0 0 0 / 67%) !important;
    }

    .botao_abrir {
        border: none;
        background: none;
        color: #fff;
        font-size: 24px;
        margin: 20px 0;
        float: right;
    }

    .menu_mobile2 {
        background: #fff !important;
        border-bottom: 1px solid #868686 !important;
        transition: 0.3s;
    }

    .menu_mobile3 {
        background: transparent;
        border-bottom: 1px solid transparent;
        transition: 0.3s;
    }
}
