.nav,
.nav ul,
.nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav {
    padding: 4px;
}

.nav > li {
    margin: 6px 0;
}

/* ссылки */
.nav a {
    display: block;
    text-decoration: none;
    color: #666;
    font-size: 18px;
    padding: 6px 35px 6px 10px;
    border-radius: 4px;
    position: relative;
    background: #dadada;
}

/* стрелка FontAwesome */
.nav > li > a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f078"; /* chevron-down */
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

/* активный пункт */
.nav li.active > a,
.nav li.open > a {
    background: #5d5d5d;
    color: #fff;
    font-weight: bold;
}

/* поворот стрелки */
.nav li.open > a::after,
.nav li.active > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* подменю */
.nav ul {
    max-height: 0;
    overflow: hidden;
    margin-left: 10px;
    transition: max-height 0.35s ease;
}

/* раскрытое меню */
.nav li.open > ul,
.nav li.active > ul {
    max-height: 500px;
}

/* пункты внутри */
.nav ul li {
    font-size: 18px;
    padding: 8px 10px;
    color: #5d5d5d;
}

/* иконки сверху */
.external i {
    color: #666;
}

.external a {
    margin-right: 14px;
}