.bp-why {
  padding: 80px 0;
  background: var(--bp-red);
  border-top: 4px solid var(--bp-ink);
  border-bottom: 4px solid var(--bp-ink);
  position: relative;
  overflow: hidden;
}
.bp-why__in {
  position: relative;
  z-index: 1;
}
.bp-why .bp-shead h2,
.bp-why .bp-shead p {
  color: #fff;
}
.bp-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 46px;
}
.bp-why__item {
  background: var(--bp-cream);
  border: 3px solid var(--bp-ink);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 5px 5px 0 var(--bp-ink);
}
.bp-why__ic {
  font-size: 40px;
  display: block;
  margin-bottom: 14px;
}
.bp-why__item h4 {
  font-family: "Archivo Black", "Archivo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1;
  color: var(--bp-ink);
}
.bp-why__item p {
  font-size: 14px;
  font-weight: 500;
  color: #52453a;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .bp-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .bp-why__grid {
    grid-template-columns: 1fr;
  }
}
