
#modal-mobile-menu {
    display: none;
    height: 100vh;
    z-index: 1000000;
    width: 100%;
    position: fixed;
    top: 0;
    background: var(--main-white);
}
.content-mobile-menu {
   height: 100%;
}
.head-mobile-menu {
    padding: 8px 20px;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
.head-mobile-menu .logo_img {
    max-width: 100px;
}
.close_img {
    width: 1.5rem;
    height: 1.5rem;
}
.items-mobile-menu {
    height: 55vh;
    align-items: center;
    justify-content: space-evenly;
    margin: 35px;
}
.items-mobile-menu a {
    font-family: "Avenir";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 160%;
    display: flex;
    align-items: center;
    color: var(--black-1);
    text-decoration: none;
}
.btn.btn-mobile {
    max-width: 90%;
    width: 90%;
    align-self: center;
}
button.btn-mobile:hover {
    box-shadow: inset 100em 0 0 0 var(--main-white);
    /* border: 1px solid var(--main-blue);
    color: var(--main-blue); */
}
.active-page a {
    color: var(--main-blue);
}