.flex-menu-parent {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    font-family: "Legend", Helvetica, Arial, serif;
}

.flex-menu {
    flex: 0 0 auto;
    width: 20%;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .flex-menu-parent {
        flex-direction: column;
    }

    .flex-menu {
        padding: 10px 0 10px 0;
        width: auto;
    }
}