/* Strat Banner */
.photo-banner {
  color: #FFF;
  min-height: calc(100vh - 80px);
  background-image: url(../imgs/banner);
  background-size: cover;
  background-position: center;
  text-align: center;
}
/* End Banner */

/* Start Gallery */
.gallery .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  grid-gap: 25px;
}
.gallery .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
@media screen and (max-width: 535px) {
  .gallery .container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
/* End Gallery */