.agenda1 .ul {
  text-align: center;
  margin: 0 -20px 10px;
  border-bottom: 1px solid #ccc;
}
.agenda1 .ul .li {
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 10px;
  font-size: 22px;
  cursor: pointer;
  font-family: 'ebg-font-bold', Arial, Helvetica, sans-serif;
  position: relative;
}
@media (max-width: 768px) {
  .agenda1 .ul .li {
    font-size: 18px;
  }
}
.agenda1 .ul .li:after {
  -webkit-transition: .4s;
  transition: .4s;
  position: absolute;
  content: '';
  height: 2px;
  left: 40%;
  right: 40%;
  bottom: 0;
}
.agenda1 .ul .li.current {
  color: #5261ab;
}
.agenda1 .ul .li.current:after {
  left: 18px;
  right: 18px;
  background-color: #5261ab;
}
