.clients-section h2 span {
  background: var(--primary-color);
  padding: 10px 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transform: rotate(7deg);
  min-width: 125px;
}

.clients-section h2 span em {
  transform: rotate(-7deg);
  font-style: normal;
}


.logos-wrapper .company-image {
  width: auto;
  margin: 10px;
  display: block;
  /* filter: grayscale(1); */
  /* opacity: 0.5; */
  transition: all 0.3s ease;
  cursor: pointer;
}

/* .logos-wrapper .company-image:hover {
  filter: grayscale(0);
  opacity: 1;
} */

@media only screen and (max-width: 767px) {
  .clients-section h2 span {
    min-width: unset;
    transform: rotate(4deg);
  }

  .clients-section h2 span em {
    transform: rotate(-4deg);
  }

  .logos-wrapper .company-image {
    max-height: 45px;
    margin: 0;
  }
}