.links {
  margin: 0 auto 50px;
  max-width: 1200px;
}

.links__list {
  display: flex;
  list-style: none;
  margin-bottom: 80px;
}

.links__listItem {
  border-right: 3px dotted #9da7b2;
  padding: 0 28px;
}

.links__listItem:last-of-type {
  border-right: none;
}

.links__link:hover {
  opacity: 0.7;
}

.links__linkImage {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .links {
    padding: 0 40px;
  }

  .links__list {
    display: block;
  }

  .links__listItem {
    border-right: none;
  }

  .links__listItem::after {
    border-bottom: 3px dotted #b5c0cd;
    content: "";
    display: block;
    height: 0;
    margin: 40px auto 60px;
    width: 50%;
  }

  .links__listItem:last-of-type::after {
    content: none;
  }
}
