.location {
  font-family: "Acumin Pro";
  font-weight:normal;
  font-size:calc(1vw + 0.5rem);
  margin-left:7vw;
  padding-top:8vmax;
}
.gallery {
  font-family: "Acumin Pro";
  font-weight:normal;
  font-size:calc(0.3vw + 1rem);
  margin-left:7%;
  margin-right:7%;
}
.photos {
  max-width: 100%;
    height: auto;
    display: block;
}
.photo1 {
  float: left;
  width: 51.2%;
  margin-right: 2%;
  padding-bottom: 2%;
}
.photo2 {
  float: right;
  width: 46.8%;
  padding-bottom: 2%;
}
.photo3 {
  float: right;
  width: 46.8%;
  padding-bottom: 2%;
}
.photo4 {
  float: left;
  width: 100%;
  margin-right: 7%;
  padding-bottom: 7%;
}

.photo1, .photo2, .photo3, .photo4, .photo5 {
  display: flex;

}
  .reveal {
  position: relative;
  opacity: 0;
}
.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in;
}

@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 800px) {
.location, .gallery {
  margin-left: 5%;
  margin-right: 5%;
}    
/* For mobile phones: */
.photo1, .photo2, .photo3, .photo4 {
  width: 100%;
}
}