.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: #000;
    color: #fff;
    padding: 16.5rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    bottom: 12.9rem;
    right: -1.4rem;
    width: 22.1rem;
    height: 23.7rem;
    background: rgba(177, 255, 194, 0.60);
    filter: blur(137.13699340820312px);
    pointer-events: none;
}

.menu.active {
    pointer-events: auto;
    opacity: 1;
}

.menu__nav {
    border-radius: 4.5rem;
    border: 1px solid #FFF;
    padding: 3rem;
    display: grid;
    gap: 1rem;
    margin-bottom: auto;
}

.menu__nav a {
    height: 4.8rem;
    color: #FFF;
    font-family: "UAFSans";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 450;
    line-height: 140%; /* 2.24rem */
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu__lang {
    border-radius: 4.5rem;
    border: 1px solid #FFF;
    width: 13.2rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 1;
}

.menu__lang a {
    border-radius: 4.5rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center ;
    color: #000;
    font-family: "UAFSans";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 450;
    line-height: 140%; /* 2.24rem */
    text-transform: uppercase;
    color: #fff;
}

.menu__lang a.active {
    background-color: #FFF;
    color: #000;
}