.link-list__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .link-list__row {
    margin-bottom: -10px;
    padding: 20px;
  }
}
.link-list__item {
  max-width: 100%;
  padding: 16px 60px;
  position: relative;
  width: 33.33%;
}
.link-list__item::after {
  display: block;
  content: "";
  width: 1px;
  height: 50px;
  opacity: 0.5;
  background: #101E61;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 992px) {
  .link-list__item:nth-child(3n)::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .link-list__item:nth-child(2n)::after {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .link-list__item {
    width: 50%;
    padding: 16px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .link-list__item {
    padding: 0 0 20px;
    width: 100%;
  }
  .link-list__item::after {
    display: none;
  }
  .link-list__item:last-child {
    padding-bottom: 0;
  }
  .link-list__item:last-child::after {
    display: none;
  }
}
.link-list__item a {
  color: #F04E45 !important;
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .link-list__item a {
    font-size: 14px;
  }
}
.link-list__item a::after {
  display: inline-block;
  content: "";
  background-image: url(../../images/icons/chevron-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: relative;
  top: 2px;
}/*# sourceMappingURL=link-list.css.map */