* {box-sizing:border-box}
body {
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}
h1, h2 {
  margin-left: 24px;
}
.container {
  overflow: hidden;
}
figure {
  display: inline-block;
  padding: 0;
  padding: 4px;
  background-color: #b5d7e7;
  margin: 5px 2px 5px 2px;
}

figure img {
  max-width: 100%;
  max-height: 17vw;
  transition: 0.2s ease-in-out;
}
figure img:hover {
  filter: brightness(95%);
}
figcaption {
  text-align: center;
  background-color: #b5d7e7;
  color: #002d4b;
  padding: 2px;
}
.page-content {
  position: absolute;
  overflow-y: auto;
  height: calc(100vh - 60px);
  width: 100%;
}
.page-content-env {
  padding: 20px;
}
.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  top: 100vh;
  transition: 1s ease-in-out;
  border: 4px solid #b5d7e7;;
}
.slideshow-content {
  position: absolute;
  height: 100%;
  transition: 0.5s ease-in-out;
}
.mySlides {
  display: inline-block;
  position: relative;
  height: 100%;
  padding: 30px;
  background-color: white;
}
.mySlides > div {
  width: 100%;
  height: 100%;
} 
.prev, .next, .close {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 10px;
  color: #002d4b;
  opacity: 0.8;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.close {
  right: 0px;
  top: 22px;
  border-radius: 3px;
}
.prev:hover, .next:hover, .close:hover {
  background-color: #002d4b80;
  color: #b5d7e7;
}
.figures {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: flex-end;
}

@media (max-width: 1280px) {
figure img {
  max-height: 34vw;
}
}

@media (max-width: 686px) {
figure img {
  max-height: 68vw;
}
}

@media (max-width: 850px) {
.page-content {
  height: calc(100vh - 60px);
}
}