
  /* Style the tab */
  
  
  .pmc-tabbed {
    margin-bottom: 20px;
  }
  
  .tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
    display: block;
    justify-items: start;
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
  background-color: #ddd;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
  background-color: #ccc;
  }
  
  /* Style the tab content */
  .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  }
  
  @media only screen and (max-width: 767px) {
  .tab{
        display: grid;
    justify-items: start;
     }
  
    .img-content{
      width:40% !important;
    }
  
    .tabitem-text {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }
    .tabitem-container {
    background: #f4f4f4;
    box-shadow: 8px 8px 10px 0px #cbcbcb;
    padding: 10px;
      margin-bottom:12px;
  }
  }
  
  @media only screen and (min-width: 768px) {
  
  .tab {
    overflow: hidden;
    border: none;
    background-color: #ffffff;
    display: block;
    justify-items: start;
  }
  
    button.tablinks {
    margin-right: 10px;
  }
  
  .tab button {
    background-color: #ebebeb;
    float: left;
    border: 1px solid #a1a1a1;
    outline: none;
    border-bottom: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
  }
  
    .tab button.active {
    background-color: white;
    color: black;
      border-bottom:none;
  }
  
    .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    /* border-top: none; */
  }
  
  
    
  }
  
