function clickBtn() {
var $btn = $('.programm__list-item__btn');
var $sublist = $('.programm__list-item__sublist');
$btn.click(function(event) {
var $target = $(event.currentTarget);
var $dropdown = $target.next();
$btn.not($target).toggleClass('active', false);
$sublist.not($dropdown).toggleClass('active', false);
$target.toggleClass('active', true);
$dropdown.toggleClass('active', true);
});
};
clickBtn();
.header {
position: relative;
border-bottom: 4px solid transparent;
}
.header::after {
position: absolute;
z-index: 1;
left: 2.5%;
bottom: -4px;
width: 95%;
height: 4px;
content: '';
background-color: #f00;
}