/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
.terms-problems-block {
  padding: 40px 0;
}
.terms-problems_holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.terms-problems_btn {
  border-radius: 0;
  width: 100%;
  height: 107px;
  margin-top: 40px;
}

@media (max-width: 1200px) {
  .terms-problems_holder {
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .terms-problems_holder {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .terms-problems-block {
    padding: 20px 0;
  }
  .terms-problems_btn {
    margin-top: 20px;
    height: 67px;
  }
}
@media (max-width: 700px) {
  .terms-problems_holder {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .terms-problems_holder {
    grid-template-columns: 100%;
  }
}/*# sourceMappingURL=block.css.map */