.gallery_page {
  border-top: 2px solid #333333;
  padding-top: 40px;
  width: 100%;
  text-align: left;
  
}

.gallery_page > h1 {
  font-size: inherit;
  text-decoration-line: underline;
  font-weight: inherit;
  margin-bottom: 2em;
}

.gallery_page > .gallery_address {
  margin-top: 2em;
  margin-bottom: 3em;
}

.gallery_container {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: min(30px, 4vw);
  grid-row-gap: min(30px, 4vw);
}

.gallery_item {
  background-color: #fff;
  color: #000;
  padding-top: 67%;
  height: 0;
  overflow: hidden;
  border: 2px solid #333333;
  position: relative;
}

.gallery_item:nth-child(odd):last-child {
  transform: translate(calc(50% + min(30px, 4vw) / 2), 0px)
}

.gallery_item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  cursor: pointer;
}

@media only screen and (max-width: 350px) {
  .gallery_container {
    grid-template-columns: 100%;
    grid-column-gap: 0%;
    grid-row-gap: 4vw;
  }
  .gallery_item:nth-child(odd):last-child {
    transform: none;
  }
}
