.table-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  border: 1px solid #ccc;
}
.tableSection .grid-item img {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.tableSection .grid-item:last-child {
    border: 0;
    border-left: 1px solid #ccc;
}
.grid-item {
  border: 1px solid #ccc;
  padding: 1.5rem;
}

.table-grid .grid-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    border: 0;
}
.table-grid .grid-item:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    border: 0;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
}
.table-grid .grid-item.span-two-rows {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}
.twoColsection .col-md-6:last-child .text-right {
    display: none;
}
.tableSection .heading5.pb-2 {
    text-align: center;
}
@media (max-width: 767px) {
    .twoColsection h5.custom-test-title br {
    display: none;
}
.tableSection .table-grid {
    display: block;
    margin-bottom: 67px;
}
    .twoColsection .col-md-6:last-child .grid-item:first-child, .twoColsection .col-md-6:last-child .grid-item:nth-child(2) {
    display: none;
}
.twoColsection .col-md-6:last-child .grid-item:last-child {
    display: block !important;
    text-align: center;
    border: unset;
}
.twoColsection .col-md-6:last-child .grid-item:last-child p {
    text-align: left;
}
.twoColsection .card-body .text-right {
    text-align: center !important;
}
.tableSection .table-grid .grid-item:last-child {
    display: none;
}
.twoColsection .card-body {
    padding: 0;
}
.twoColsection .card-body ul {
    padding-top: 30px;
    padding-left: 27px;
}
.table-grid .grid-item {
    padding: 13px;
}
.table-grid .grid-item:nth-child(2) {
    text-align: center;
}
.table-grid .grid-item:nth-child(2) p {
    text-align: left;
}
}