.table-wrap {
  background-color: #fff;
  padding: 2rem 0;
  color: #000;
}
 
 table {
    border: 1px solid #ccc;
    margin:0;
    padding:0;
  }
  table img{width:fit-content;}
 
  table tr {
    border: 1px solid #ddd;
    padding: 5px;
  }
  table th{text-align:center;}
  table th, table td {
    padding: 10px;
    border-right: 1px solid #ddd;
  }
 
  table th {
    color: #fff;
    background-color: var(--green);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
  }
.tr-secondary {
    background-color: var(--light-green) !important;
}
.tr-secondary th, .tr-secondary td{color:var(--green); font-weight:bold;}

@media screen and (max-width: 767px) {
  table {
    border: 0;
  }
  table thead {
    display: none;
  }
  table tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #ddd;
  }
  table td {
    display: flex;
    flex-direction: column;
    letter-spacing: 0.07em;
    text-algn:left;
    line-height: 1.5;
    font-size: 13px;
    border-bottom: 1px dotted #ccc;
    border-right: 1px solid transparent;
  }
  table td:last-child {
    border-bottom: 0;
  }
  table td:before {
    content: attr(data-label);
    text-align:center;
    text-transform: uppercase;
    font-weight: bold;
  }
}