/*animated link*/
.izbornik a {
  position: relative;
  color: var(--title);
  text-decoration: none;
  padding-bottom: 5px;
}

.izbornik a:hover {
  color: var(--title);
}

.izbornik a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.45s ease;
}

.izbornik a:hover::before {
  transform: scaleX(1);
}
