.menu-aside {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    width: 100px;
    border-right: .6px solid rgba(255, 255, 255, 0.507);
    width: 100px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
}

.top-cont {
    padding: 30px 0;
    justify-self: center;
    height: min-content;
    position: relative;
    line-height: 10px;
}

.top-cont .rightMenu {}

.top-cont .rightMenu:hover {
    transform: scale(0.98);
}

.top-cont .rightMenu::before {
    content: "";
    border-radius: 10rem;
    position: absolute;
    opacity: 0;
    z-index: -2;
    height: 60px;
    width: 60px;
    top: 10px;
    left: -16px;
}

.top-cont .rightMenu:hover::before {
    transform: scale(1);
    opacity: 1;
    background: var(--text);
}

.top-cont .rightMenu:hover svg {
    transform: scale(.8);
    color: white;
    line-height: 0;
}

.top-cont .rightMenu svg {
    transform: scale(1.1);
    transition: all 0.3s ease 0s;
    color: var(--text);
}

.top-cont .rightMenu:hover::after {
    transform: scaleX(0);
    transform-origin: right center;
    content: "";
}

.middle-cont {
    align-self: center;
    justify-self: center;
}

.middle-cont .brand-logo svg {
    width: 70px;
    height: 70px;
    color: var(--text);
}

.middle-cont .brand-logo svg:hover {
    color: var(--dark);
}

.bottom-cont {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
    justify-content: flex-end;
}

.bottom-cont svg {
    width: 20px;
    height: 20px;
    color: var(--text);
}

.bottom-cont svg {
    transform: scale(1);
    transition: all 0.3s ease 0s;
}

.bottom-cont svg:hover {
    transform: scale(1.2);
    color: var(--dark);
}

.brand-logo {
    font-family: 'Deutschlander 2.0';
    font-size: 60px;
    text-transform: uppercase;
    /* letter-spacing: 1; */
    color: var(--text);
}