.section-text-and-icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 4rem 0;
}

.icons-array {
  display: flex;
  width: 40%;
  min-width: 500px;
  justify-content: space-between;
  margin-top: 1rem;
  column-gap: 1rem;
}

.icons-array img{
  width: 100%;
  max-height: 56px;
  object-fit: contain;
}

@media only screen and (max-width: 990px) {
  .icons-array {
    width: 100%;
    justify-content: center;
    min-width: auto;
  }
}