.partner-logos ul li {
  position: relative;
}
.partner-logos ul li:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--maroon);
  position: absolute;
  right: -10px;
}
.partner-logos ul li:last-child::after {
  width: 0;
  height: 0;
}
.partner-logos ul li .icon-wrapper {
  text-align: center;
  height: 90px;
}
.partner-logos ul li .icon-wrapper img {
  max-width: 95%;
  max-height: 100%;
}
@media (min-width: 48rem) and (max-width: 64rem) {
  .partner-logos ul li:nth-child(3n)::after {
    width: 0;
    height: 0;
  }
}
@media (max-width: 47.9375rem) {
  .partner-logos ul li:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--maroon);
    position: absolute;
    bottom: -10px;
    right: auto;
  }
  .partner-logos ul li:last-child::after {
    width: 0;
    height: 0;
  }
}