.info-wrapper {
  display: grid;
  gap: 2rem;
  margin: 2rem 0 0;
  grid-template-columns: repeat(2,calc(50% - 1rem));
}
.info-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-family: Albert Sans;
  font-weight: 700;
  text-align: center;
}
.info-icon__image {
  width: 100%;
}
.info-icon__image img{
  margin: 0 auto;
  max-height: 75px;
}
@media all and (min-width: 600px) {
  .info-wrapper {
    grid-template-columns: repeat(4,calc(25% - 1.25rem));
  }
}
@media all and (min-width: 900px) {
  .info-wrapper {
    grid-template-columns: repeat(2,calc(50% - 1rem));
  }
}
@media all and (min-width: 1300px) {
  .info-wrapper {
    grid-template-columns: repeat(4,calc(25% - 1.25rem));
  }
}
