@media screen and (max-width: 768px) {
 
  .headerBanner h1 {
    font-size: 18px;
    padding: 10px;
  }

  .header-logo {
    display: block;
    margin: 0 auto;
    max-width: 250px;  /* limits max width */
    width: 100%;       /* makes it responsive */
    height: auto;      /* maintains aspect ratio */
    max-height: 100px; /* optional: limits max height */
}


  .content-box h3 {
      font-size: 17px !important;
  }
    table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    box-sizing: border-box;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
  }

  td {
    position: relative;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid #eee;
    word-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
  }
td.licno {
    width: 100%;
}
  table th, table td {
    padding: 10px 0px 10px 10px !important;

  }

  /* td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 8px;
    font-weight: bold;
    white-space: normal;
    box-sizing: border-box;
  } */

td::before {
	content: attr(data-label);
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	font-weight: bold;
	white-space: normal;
	text-align: left;
	display: block;
}


}