/* Home benefit icon boxes */
.az9s-home-benefits {
  width: 100%;
  background: #fff;
  border-top: 1px solid #eef1f4;
  border-bottom: 1px solid #eef1f4;
}

.az9s-home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
}

.az9s-home-benefits__item {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 28px 18px 26px;
  text-align: center;
  background: #fff;
  border-right: 1px solid #e8ecf0;
  box-shadow: 0 0 12px rgba(18, 32, 54, .12);
}

.az9s-home-benefits__item:last-child {
  border-right: 0;
}

.az9s-home-benefits__icon {
  width: 116px;
  height: 116px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #c91520;
  border-radius: 50%;
  flex: 0 0 auto;
}

.az9s-home-benefits__icon--coral {
  background: #ef5148;
}

.az9s-home-benefits__icon i {
  font-size: 54px;
  line-height: 1;
}

.az9s-home-benefits__zero {
  color: #fff;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.az9s-home-benefits__free {
  color: #fff176;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1;
}

.az9s-home-benefits__item h3 {
  min-height: 48px;
  margin: 0;
  color: #2f3338;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .az9s-home-benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .az9s-home-benefits__item:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .az9s-home-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .az9s-home-benefits__item {
    min-height: 170px;
    gap: 12px;
    padding: 20px 12px;
  }

  .az9s-home-benefits__item:nth-child(3n) {
    border-right: 1px solid #e8ecf0;
  }

  .az9s-home-benefits__item:nth-child(2n) {
    border-right: 0;
  }

  .az9s-home-benefits__icon {
    width: 86px;
    height: 86px;
  }

  .az9s-home-benefits__icon i {
    font-size: 38px;
  }

  .az9s-home-benefits__zero {
    font-size: 42px;
  }

  .az9s-home-benefits__free {
    font-size: 25px;
  }

  .az9s-home-benefits__item h3 {
    font-size: 13px;
  }
}
