.logos ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 3rem 0;
}
.logos li {
  border-radius: 12px;
  background: white;
  border: 1.5px solid #eaecf0;
  box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.07), 0 7px 15px 0 rgba(0, 0, 0, 0.1);
  padding: 3px;
  width: 95px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .logos li {
    width: 53px;
    height: 53px;
    padding: 7px;
  }
}
