div.gallery {
  border: 1px solid #ccc;
}
div.gallery:hover {
  border: 1px solid #777;
}
div.gallery img {
  width: 100%;
  height: auto;
}
div.desc {
  padding: 15px;
  text-align: center;
  font-size: 1.69vh;
  overflow-wrap: break-word;
}
* {
  box-sizing: border-box;
}
.responsive-left {
  padding: 0 6px;
  padding-bottom: 6px;
  float: left;
  width: 24.99999%;
  margin-right: 15px;
}
@media only screen and (max-width: 700px) {
  .responsive-left {
    width: 49.99999%;
    margin: 6px 0;
  }
}
@media only screen and (max-width: 500px) {
  .responsive-left {
    width: 100%;
  }
}
.responsive-right {
  padding: 0 6px;
  padding-bottom: 6px;
  float: right;
  width: 24.99999%;
  margin-right: 15px;
}
@media only screen and (max-width: 700px) {
  .responsive-right {
    width: 49.99999%;
    margin: 6px 0;
    float: left;
  }
}
@media only screen and (max-width: 500px) {
  .responsive-right {
    width: 100%;
    float: left;
  }
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}