.displayTabs{
    font-family: verdana;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    display: flex;
    align-items: center;
    width: 98.2%;
  }
  
  .tabImg{
    height: 25px;
    width: 25px;
    padding-right: 1%;
  }
  
  .tabMoreInfo, .tabCalculator,.tabEnquire{
    width: 50%;
    background-color: #5d5d5d;
    border: 2px solid #04b4ec;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
  }
  
  .tabCalculator:hover, .tabMoreInfo:hover{
    background-color: #000;
    color: #fff;
    border-color: #04b4ec;
  }

  .tabEnquire{
    display: none;
  }

  @media (max-width: 991px) {
    .tabMoreInfo, .tabCalculator,.tabEnquire{
      width: 33%;
      background-color: #dcdcdc;
      border: 2px solid #000;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
    }

    .tabEnquire{
      display: flex;
    }
  }