div.gallery {
    border: 1px solid white;
    padding:4px 4px 4px 4px;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .responsive {
    padding: 0 4px;
    float: left;
    width: 24.99999%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 4px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
  .gallery-control{
    padding: 4px 4px 4px 4px;

      object-fit: contain;
    /* or
      object-fit: cover; */
      width: 300px;
      height: 200px !important;
 
    
  }
  .gallery-control-400{
    padding: 4px 4px 4px 4px;
    width: 400px;
    height: 200px !important; ;
    object-fit: contain;
  }
  .gallery-control-350{
    padding: 4px 4px 4px 4px;
    width: 350px;
    height: 200px !important; ;
    object-fit: contain;
  }
  .gallery-control-200{
    padding: 4px 4px 4px 4px;
    width: 300px;
    height: 200px !important;
  }
  .align-center{
    text-align: center;
  }