.header-landing {
  background-color: var(--color-white);
  width: 100%;
  height: auto;
  padding: 10% 5% 5%;
  text-transform: uppercase;
  border-top: 1px solid var(--color-grey-lightest);
}
.header-landing h2 {
  font-size: 24px;
  margin: 0;
}
.header-landing h4 {
  font-size: 10px;
  margin: 0;
}

.gallery {
  width: 100%;
  height: auto;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
}
.gallery .image {
  width: calc(100% - 8px);
}
.gallery .image.i-2 {
  width: calc(100% / 2 - 4px);
}
.gallery .image.i-3 {
  width: calc(100% / 3 - 8px);
}
.gallery .image.i-4 {
  width: calc(100% / 4 - 16px);
}
.gallery .image.i-5 {
  width: calc(100% / 5 - 24px);
}

@media (max-width: 900px) {
  .gallery .image,
  .gallery .image.i-2,
  .gallery .image.i-3,
  .gallery .image.i-4,
  .gallery .image.i-5 {
    width: 100%;
  }
  .header-landing {
    padding: 120px 10% 10%;
  }
}