:root {
  --table-border: #e6e6e6;
}

.table-no-header table {
  width: auto;
  padding: 20px;
  border: 1px solid var(--table-border);
  margin: 0;
}

.table-no-header td {
  padding: 15px 10px;
  font-weight: 600;
  color: var(--company-color);
  text-align: center;
  white-space: nowrap;
}

td.table-no-header__middle {
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: var(--descriptions-color);
  position: relative;
}

td.table-no-header__middle::after {
  content: "------------";
  position: static;
}

@media (max-width: 768px) {
  .table-no-header table {
    width: 100%;
  }

  td.table-no-header__middle::after {
    content: "------";
  }

  .section-title p{
    font-size: 14px;
    text-align: left;
  }
}
