

 .tab-wrapper{
    height: auto;
 }
 .tab-container{
    padding-top: 40px;
    padding-bottom: 40px;
 }

 /* Style the tab */
 .tab {
    overflow: hidden;
 }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;

  }
  
  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #022a50;
    color: white;
  }
  
  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #022a50;
    color:white;
    border-right:5px solid #2570b8;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    background-color: white;
    box-shadow: 0 0 5px #333;
    height: auto;
    padding:20px;
  } 

  .tabcontent img{
    float: right;
    width: 100%;
}