.custom-table {
  width: 100%;
}
.custom-table__grid {
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #D3D3D3;
  border-top: none;
}
@media (min-width: 768px) {
  .custom-table__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.custom-table__row {
  display: contents;
}
.custom-table__el {
  padding: 20px 18px;
  border-top: 2px solid #D3D3D3;
  width: 100%;
}
@media (min-width: 768px) {
  .custom-table__el {
    width: 33.3333333333%;
    border-right: 2px solid #D3D3D3;
  }
}
.custom-table__el-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #f65408;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.custom-table__el-content {
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}
.custom-table__el:nth-child(3n) {
  border-right: none;
}