.usp-block .items {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.usp-block .items::-webkit-scrollbar {
  display: none;
}
.usp-block .items > div {
  flex: 0 0 280px;
}
@media (min-width: 1200px) {
  .usp-block .items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 72px;
    overflow: visible;
  }
  .usp-block .items > div {
    grid-area: auto;
  }
}