.logostrip {
  margin-bottom: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: inline-flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: space-between;
  align-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.logostrip div {
  order: 1;
  -webkit-flex: 7;
  -ms-flex: 7;
  flex: 7;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  margin: 1rem 1.5rem;
}
.logostrip div img {
  opacity: 0.5;
}
.logostrip div img:not(.no-brightness) {
  filter: brightness(0);
  -webkit-filter: brightness(0);
}

.logostrip div img.no-brightness {
  filter: brightness(0.65) contrast(3);
  -webkit-filter: brightness(0.65) contrast(3);
}

@media screen and (max-width: 768px) {
  .singlerow section:not(.logostrip) {
    margin-left: 5%;
    margin-right: 5%;
    max-width: 90%;
  }

  .logostrip {
    margin-top: 1rem;
    margin-bottom: 0;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
  }
  .logostrip div {
    order: 1;
    -webkit-flex: 0 1 33%;
    -ms-flex: 0 1 33%;
    flex: 0 1 33%;
    text-align: center;
  }
  .logostrip div img {
    opacity: 0.5;
    width: auto;
  }
}