.links-copyright{
  display: flex;
  color: #6D6E71;
  font-size: 11px;
  padding-bottom: 30px;
  flex-direction: row;
  justify-content: flex-start;
}

{# ---- Tablet Breakpoint ---- #}

@media (max-width: 992px) {

  .links-copyright{
    display: flex;
    align-items: center;
  }
  .footer-new-links{
    flex-direction: column;
  }
}

@media (max-width: 765px) {
  .links-copyright{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.links-copyright-item{
  color: #6D6E71;
  text-decoration: none;
  transition: all 0.2s linear;
}

.links-copyright-item:not(:last-child):after{
  content: "\b7";
  display: block;
  width: 1px;
  height: 60%;
  display: inline-block;
  margin: 0 10px 0 9px;
}


.links-copyright-item__hover:hover{
  color: #4f525e;
  transition: all 0.2s linear;
  text-decoration: underline;
}

.links-copyright-item__one:hover{
  color: #6d6e71;
  transition: all 0.2s linear;
  text-decoration: none;
}