#terms-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #9b782d;
  padding: 40px 60px;
  column-gap: 40px;
  box-shadow: 0px 0px 20px rgba(64, 34, 24, 0.05);
  border-radius: 5px;
  margin-bottom: 40px;
}
#terms-block .term__icon {
  object-fit: contain;
  width: 60px;
  height: 60px;
}
#terms-block .terms__holder {
  width: 80%;
  flex-grow: 1;
}
#terms-block .terms__holder .term__item {
  display: flex;
  flex-direction: column;
}
#terms-block .terms__holder .term__item .item__title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #402218;
  margin-bottom: 5px;
  font-weight: 700;
}
#terms-block .terms__holder .term__item .item__title:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #749E12;
}
#terms-block .terms__holder .term__item .item__terms {
  padding-left: 20px;
}
#terms-block .terms__holder .term__item .item__terms ul li {
  align-items: center;
}
#terms-block .terms__holder .term__item .item__terms ul li:before {
  width: 10px;
  height: 3px;
  border-radius: 2px;
  background-color: #749E12;
  margin-top: 0;
}

@media (max-width: 1025px) {
  #terms-block {
    padding: 30px;
  }
}
@media (max-width: 769px) {
  #terms-block {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  #terms-block .terms__holder {
    width: 100%;
  }
}
@media (max-width: 498px) {
  #terms-block {
    padding: 20px;
  }
}

/*# sourceMappingURL=block.css.map */
