.table-container{
    display: block;
  box-sizing: border-box;
  width: auto;
  padding: 1em 2vw;
  margin: 1em 2vw;
  color: #000;
  /* background-color: rgba(204, 204, 204, 0.7) !important; */
  /* border: 0.07em solid rgba(0, 0, 0, 0.5); */
  border-radius: 0.5em;
}

table {
    margin: auto;
    border-collapse: collapse;
    border: 1px solid #000;
    width: 70vw;
    
  /*   width: 100%; */
  }
  .enq-btn{
    text-align: center;
  }
  
#Cap1 {
    text-align: center;
    /* font-style: italic; */
    padding: 0.25em 0.5em 0.5em 0.5em;
    text-transform:uppercase;
   
    color: #a21e21;
    
  }
  
  th,
  td {
    padding: 0.25em 0.5em 0.25em 1em;
    vertical-align: text-top;
    text-align: left;
    text-indent: -0.5em;
    border: 1px solid #000 !important;
    line-height: 2em;
  }
  
  th {
    vertical-align: bottom;
    background-color: #a21e21;
    color: #fff;
    font-weight: bold;
    line-height: 2em;
  }
  
  td::before {
    display: none;

  }

  
  tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.25) !important;
  }
  
  tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.5) !important;
  }
  
 
  
  th:nth-of-type(3),
  td:nth-of-type(3) {
    text-align: left !important;
  }
  
  
  @media screen and (max-width: 37em), print and (max-width: 5in) {
    table,
    tr,
    td {
      display: block;
      width: 100%;
    }
    tr {
      padding: 0.7em 2vw;
    }
    th,
    tr:first-of-type {
      display: none;
    }
    td::before {
      display: inline;
      font-weight: bold;
      color: #a21e21;
    }
   
    #Cap1{
      font-style: normal;
      background-color: #a21e21;
      color: #fff !important;
      font-weight: bold;
      text-align: center;
    }
    td:nth-of-type(3) {
      text-align: left;
    }
    td:nth-of-type(4), td:nth-of-type(5) {
      text-align: left;
      width: 22em;
    }
    td:nth-of-type(4)::before, td:nth-of-type(5)::before {
      text-align: left;
    }
    td:nth-of-type(2)::before {
      font-style: normal;
    }
  }
  
  @media print {
    table {
      page-break-inside: avoid;
    }
    div {
      overflow: visible;
    }
    th {
      color: #000;
      background-color: #fff;
      border-bottom: 1pt solid #000;
    }
    tr {
      border-top: 1pt solid #000;
    }
  }
  
  @media print and (max-width: 5in) {
    h3 {
      color: #000;
      background-color: #fff;
      border-bottom: 1pt solid #000;
    }
    table {
      page-break-inside:auto;
    }
    tr {
      page-break-inside: avoid;
    }
  }