@media only screen and (max-width: 600px) {
  .gallery .row {
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center !important;
  }
  .gallery .row img {
    width: 95% !important;
    margin-bottom: 10px;
  }
}
.gallery {
  width: 100%;
}

.gallery .row {
  width: 100%;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-evenly;
}

.gallery .row img {
  object-fit: cover;
}

.gallery .row:nth-of-type(odd) img:first-of-type {
  width: 35%;
}

.gallery .row:nth-of-type(odd) img:last-of-type {
  width: 55%;
}

.gallery .row:nth-of-type(even) img:first-of-type {
  width: 55%;
}

.gallery .row:nth-of-type(even) img:last-of-type {
  width: 35%;
}
