.custom-menu-icon {
    display: flex;
    justify-content: flex-end;
}

.custom-menu-icon svg {
    width: 39px;
    color: #E0E0E0;
    fill: #E0E0E0;
}

.menu-logo {
    border-bottom: 1px solid #e8e9e9;
    padding-bottom: 18px;
    text-align: center;
}

.custom-menu-container {
    position: fixed;
    top: 0;
    left: -100%;
    background: #FFF;
    width: 100%;
    max-width: 350px;
    z-index: 4;
    height: 100vh;
    transition: all 500ms ease-in-out;
    padding: 40px 0 40px 0;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 3px 6px #00000029;
}

.custom-menu-container .h {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 10px;
    padding-right: 20px;
}

.custom-menu-container .h svg {
    width: 30px;
}

.menu-content {
    height: 100%;
    overflow-y: auto;
}

.custom-menu-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-menu-container ul.menu {
    margin-bottom: 30px;
    padding: 0 30px;
}



.custom-menu-container ul.menu li {}



.custom-menu-container ul.menu a {
    color: #585858;
    font-family: "Anybody", Sans-serif !important;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
    transition: all .3s ease-in;
    border-bottom: 1px solid #e8e9e9;
    display: inline-flex;
    width: 100%;
    padding: 12px 10px 11px 10px;
}

.custom-menu-container ul.menu a:hover, 
.custom-menu-container .current_page_item a {
    color: #FF5F00 !important;
}


.custom-menu-container .menu .menu-item-has-children > a {
    border-bottom: 0;
    padding-bottom: 5px;
}

.custom-menu-container .menu .menu-item-has-children .sub-menu {
    border-bottom: 1px solid #e8e9e9;
    padding-bottom: 11px;
}

.custom-menu-container .menu .menu-item-has-children .sub-menu a {
    border-bottom: 0;
    padding-bottom: 0;
    position: relative;
    padding: 5px 10px 5px 26px;
}

.custom-menu-container .menu .menu-item-has-children .sub-menu a::before {
    content: '';
    position: absolute;
    background: url('../images/arrow-down.svg') no-repeat center center;
    top: 5px;
    left: 10px;
    width: 9px;
    height: 15px;
    z-index: -1;
}

.button-orcamento {
    padding: 0 30px;
    margin-bottom: 28px;
}

.button-orcamento a {
    font-family: "Anybody", Sans-serif !important;
    font-size: 17px;
    font-weight: 500;
    line-height: 18px;
    padding: 10px;
    background: #050447;
    color: #FFF;
    display: inline-flex;
    transition: all .3s ease-in;
}

.button-orcamento a:hover {
    background: #FF5F00;
    color: #FFF;
}

.custom-menu-container .social {
    padding: 0 38px;
}

.custom-menu-container .social h3 {
    margin: 0 0 5px 0;
    color: #FF5F00;
    font-family: "Anybody", Sans-serif !important;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.custom-menu-container .social ul {
    display: flex;
    gap: 25px;
}

.custom-menu-container .social ul a {
    font-size: 30px;
    height: 30px;
    display: block;
}

.open-menu {
    left: 0;
}

@media(max-width: 767px) {
    .custom-menu-container .h h3 {
        font-size: 27px;
    }
}













