.links-block {
  max-width: 900px;
  margin: 0 auto;
}

.links-block a {
  display: inline-flex;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none !important;
  display: flex;
  align-items: flex-start;
  width: 100%;
  color: #174078;
  background-color: #ffffff;
  border-radius: 0;
  border-bottom: 1px solid #174078;
  outline: none;
  padding: 10px 15px 10px 35px;
  margin: 0 0 15px;
  cursor: pointer;
  transition: color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
  position: relative;
}

.links-block a:hover {
  color: #ed7233;
  border-bottom-color: #ed7233;
}

.links-block a:hover::after {
  border-left-color: #ed7233;
}

.links-block a:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-left: 11px solid #174078;
  border-bottom: 6px solid transparent;
  position: absolute;
  left: 15px;
  top: 13px;
  transition: all 0.3s ease-in-out;
}

.links-block a.active::after {
  transform: rotate(90deg);
}