.term-menu {
    margin-bottom: 20px;
}
.term-menu__title {
    font-weight: bold;
    margin-bottom: 0;
    background: var(--key-color);
    color: #eee;
    padding: 5px 10px;
    border: 1px solid #eee;
}
.term-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.term-menu li {
    list-style: none;
    width: calc(100% / 3);
    margin: 0;
    border: 1px solid #eee;
}
.term-menu a {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    height: 100%;
    position: relative;
    margin-left: 25px;
    padding: 8px 0;
    display: block;
    align-content: center;
}
.term-menu nav a::before {
    font-family: "Font Awesome 7 Free";
    content: "\f0da";
    font-weight: 900;
    font-size: 20px;
    line-height: 0;
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translate(0, 50%);
}
@media (max-width: 700px) {
    .term-menu li {
        width: calc(100% / 2);
    }
}