.decision {
  padding: 0 0 3rem;
  background: #fff;
}
.decision .container {
  background: #000;
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-items: center;
}
.decision .claim-title {
  font-size: 1.5rem;
  font-weight: 900;
}
.decision .claim-title span {
  color: #13b8ea;
}
.decision .claim-item {
  padding: 0 2rem;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  height: 120px;
  border-right: 1px solid #4e525c;
}
.decision .claim-item:last-child {
  border-right: 0;
}
.decision .claim-item .icon {
  height: 50px;
  display: block;
  margin: -1rem auto 0.5rem;
  text-align: center;
  font-size: 2rem;
  color: #13b8ea;
}
@media (max-width: 992px) {
  .decision .container {
    flex-wrap: wrap;
    gap: 1.5rem 0;
  }
  .decision .claim-title {
    width: 100%;
    margin: 0 0 0.5rem;
  }
  .decision .claim-item {
    width: 50%;
    padding: 0 1.5rem;
    border-right: 0;
  }
}
@media (max-width: 768px) {
  .decision {
    padding: 0 0 2rem;
  }
  .decision .container {
    padding: 1.5rem;
    border-radius: 0.5rem;
  }
  .decision .claim-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 576px) {
  .decision {
    padding: 0 0 1.5rem;
  }
  .decision .container {
    padding: 1.5rem 1rem;
    gap: 1rem 0;
  }
  .decision .claim-item {
    width: 100%;
    padding: 0;
    height: auto;
    border-bottom: 1px solid #4e525c;
    padding-bottom: 1rem;
  }
  .decision .claim-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .decision .claim-item .icon {
    margin: 0 auto 0.5rem;
  }
}
