#stlfmp {
    /* background-color: antiquewhite; */
    display: flex;
    flex-wrap: wrap;
    min-height: 70vh;
}

#stlfmp aside {
    /* position:sticky; */

    flex-basis: 24rem;
    flex-grow: 1;
    /* padding: 0rem 1rem; */
    /* display: flex; */
    flex-direction: row;
    /* align-items: stretch; */
    /* background-color: aqua; */
    position: relative;

}

#stlfmp aside .menuwrapper {}

#stlfmp aside .menu {
    position: sticky;
    top: 14rem;
    flex: 1;
}

#stlfmp aside .menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* #stlfmp aside .menu li {
    display: flex;
    align-items: center;
}

#stlfmp aside .menu li .cat_icon {
    margin-right: 7px;
    font-size: 19px;
} */

#stlfmp aside .menu a {
    display: block;
    padding: 1.1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 5px;
}

#stlfmp aside .menu a.active {
    background: #EAF4EB;
    font-weight: bold;
}


#stlfmp aside .menu a:hover {
    background: #EAF4EB69;

}

#stlfmp aside .menu a:not(:last-child) {
    /* border-bottom: 1px solid #E2E8F0; */
}

#stlfmp main {
    flex-basis: 0;
    flex-grow: 999;
    padding: 0rem 0rem 0rem 9rem;
    min-width: calc(20rem);
    margin-top: 2.2rem;
    /* background-color: red; */
}

#stlfmp .video_wrapper {
    /* max-width: 70%; */
    /* height: auto; */
    /* margin: 0 auto; */
    /* margin-bottom: 2rem; */
}

#stlfmp .video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0;
    height: 0;
    overflow: hidden;
    /* background: aqua; */
}

#stlfmp .video iframe,
#stlfmp .video object,
#stlfmp .video embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#stlfmp article {
    margin-bottom: 7rem;
}

#stlfmp article h4 {
    margin-bottom: 0.0rem;
}

@media screen and (max-width: 64em) {
    #stlfmp {
        flex-direction: column;
    }

    #stlfmp aside {
        flex-basis: 0;
        margin-bottom: 3.2rem;
    }

    #stlfmp main {
        margin-top: 2rem;
        padding: 0;
    }

    #stlfmp aside .menu {
        position: static;
    }

}