.customProducts {
  width: 100%;
}

@media (min-width: 1080px) {

  .custom-title {
    height: 72px;
  }

  .customProducts {
    display: grid;
    gap: 32px;
  }

  .customProducts-grid-1 {
    grid-template-columns: repeat(1, 100%);
  }

  .customProducts-grid-2 {
    grid-template-columns: calc(30% - 16px) calc(70% - 16px);
  }
}