.menu {
    position: fixed;
    width: 232px;
    height: 100vh;
    padding: 66px 20px 66px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #2A3647;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    z-index: 3;
    top: 0;
    left: 0;
}

.dashboard {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 15px;
    width: 232px;
    height: 229px;
    position: relative;
}

.dashboard img {
    margin-left: 20%;
}

.dashboard a {
    text-decoration: none;
}

.summary, .board, .addtask, .contacts, .legalnotice {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 232px;
    height: 46px;
    cursor: pointer;
}

.dashboard div:hover {
    background-color: #344459;
    transition: all 125ms ease-in-out;
}

.menu_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.menu_text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 60%;
}

.dashboard span {
    color: #cdcdcd;
    font-size: 16px;
}

.legal_notice {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 15px;
    width: 232px;
    height: 289px;
    margin-bottom: 10%;
}

.legalnotice {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 232px;
    height: 46px;
    cursor: pointer;
}

.legalnotice:hover {
    background-color: #344459;
    transition: all 125ms ease-in-out;
}

.legalnotice a {
    color: #cdcdcd;
    text-decoration: none;
    font-weight: 400;
    font: 16px;
    line-height: 120%;
}

.legalnotice a:hover {
    color: #cdcdcd;
}

.menu_logo {
    margin-bottom: 110px;
}

@media (max-width: 992px) {
    .menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        background-color: #2A3647;
        position: fixed;
        z-index: 5;
        left: 0;
        bottom: 0;
        right: 0;
        height: 80px;
        width: 100%;
        padding: 0;
        top: unset;
        box-shadow: none;
        filter: none !important;
    }
    .menu_logo {
        display: none;
    }
    .legal_notice {
        display: none;
    }
    .dashboard {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 80px;
    }
    .dashboard a {
        width: 100%;
        height: 100%;
    }
    .dashboard div:hover {
        background-color: #091931;
    }
    .dashboard a div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
    .dashboard img {
        margin: 0;
    }
    .dashboard span {
        margin: 0;
    }
}

@media (max-height: 600px) and (max-width: 992px) {

    .menu {
        height: 60px;
    }

    .dashboard {
        height: 60px;
        padding: 4px 0;
    }

    .dashboard span {
        font-size: 12px;
    }
}