.menu-item-container {
    position: relative;
}

.menu-sub-items-container{
    position: absolute;
    top: 100%;
    max-height: 0;
    background: #fff;
    z-index: 2;
    padding: 0;
    overflow: hidden;

    transition: max-height 0.2s ease-in-out;
    -webkit-box-shadow: 0 3px 6px 0 #000000;
    box-shadow: 0 3px 6px 0 #000000;
}

.menu-sub-items-container.menu-sub-items-container--sub-menu-projects{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
}

.menu-sub-item-column{
    margin: 0.5em 1.2em 1em;
}

.menu-sub-item-column:first-of-type{
    margin-left: 0.5em;
}

.menu-sub-item-column-name{
    color: #5baa00;
    padding: 0.5em 1em;
    white-space: nowrap;
    text-transform: uppercase;
    display: inline-block;
    cursor: default;
}

.menu-item-container:hover .menu-sub-items-container{
    max-height: 10000px;
}

.menu-sub-item {
    white-space: nowrap;
}

.menu-sub-item-link{
    padding: 0.5em 1em;
    color: #200a03;
    display: block;
}

.menu-sub-item-link,
.menu-sub-item-link:visited{
    color: #200a03;
    text-decoration: none;
}

.menu-sub-item-link:hover{
    background: #5baa00;
    color: #fff;
}
