.nav_wrapper {
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 66px 23px;
    width: 232px;
    box-sizing: border-box;
    align-items: center;
    z-index: 20;
}

.nav_bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.nav_bar nav {
    width: 100%;
}

.nav_bar nav ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-left: 0;
}

.nav_bar nav li {
    list-style: none;
    width: 100%;
}

.nav_bar nav li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #42526e;
    font-size: 16px;
    border-radius: 20px;
    line-height: 1.2;
    padding: 8px 30px;
    column-gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.nav_bar nav li a:hover {
    background-color: var(--menuHoverColor);
}

.active {
    background-color: var(--menuHoverColor);
}

.nav_bar nav li a img {
    width: 24px;
    height: 24px;
}

.legal_stuff {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 186px;
    gap: 16px;
}

.legal_stuff > a {
    text-decoration: none;
    color: #42526e;
    line-height: 1.2;
    padding: 8px;
    text-align: center;
    width: 100%;
}

.legal_stuff > a:hover {
    color: var(--primaryColor);
}

@media (max-width: 1200px) {
    .content {
        flex-direction: column-reverse;
        height: auto !important;
    }

    .nav_wrapper {
        z-index: 999;
        background-color: white;
        bottom: 0;
        left: 0;
        position: fixed;
        width: 100%;
        flex-direction: row;
        padding: 0 16px;
        box-shadow: none;
        max-height: 76px;
        box-shadow: 0px -1px 6px 0px #0000001A;
        font-size: 15px;
    }

    .nav_bar nav ul {
        display: flex;
        flex-direction: row;
        row-gap: unset;
        justify-content: space-between;
        flex: 1;
    }

    .nav_bar nav li {
        width: unset;
    }

    .legal_stuff {
        display: none;
    }

    .nav_bar nav li a {
        flex-direction: column;
        gap: 4px;
        padding: 15px 0;
    }

    .active {
        background-color: transparent;
        color: #4589FF !important;
    }

    .nav_bar nav li a:hover {
        background-color: transparent;
        color: #4589FF !important;
    }
}

@media (max-width: 520px) {
    .nav_wrapper {
        height: 80px;
    }

    .nav_bar nav li a {
        padding: 0;
    }
}