@media (min-width:1200px) {
.link-animate {
text-decoration: none;
color: #18272F;
font-weight: 700;
position: relative;
}

.link-animate::before {
  content: '';
  background-color: var(--bg-link-animate);
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 25px;
  z-index: -1;
  transition: all .3s ease-in-out;
}

.link-animate:hover::before {
  bottom: 10px;
  height: 100%;
}
}