.loaded-page {
  margin-top: -100px;
  height: 100vh;
  width: calc(100vw - 280px);
}
@media screen and (max-width: 1023px) {
  .loaded-page {
    width: 100%;
    height: calc(100vh - 80px);
    margin: 0 auto;
  }
}

.navigation-holder {
  width: 280px;
  background-color: white;
  margin-top: -100px;
  padding-top: 100px;
  height: 100vh;
}
.navigation-holder > div {
  width: 85%;
}
@media screen and (max-width: 1023px) {
  .navigation-holder > div {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  .navigation-holder {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: white;
    height: calc(100vh - 80px);
    transition: opacity 0.5s;
    margin: 0 auto;
    padding: 0;
  }
}

.header-holder {
  width: 80%;
  margin: 200px auto 0;
}
@media screen and (max-width: 1023px) {
  .header-holder {
    width: 90%;
    margin: 40px auto;
  }
}
.header-holder h1 {
  margin: 20px auto;
  font-weight: 400;
  font-size: 40px;
}
@media screen and (max-width: 1023px) {
  .header-holder h1 {
    font-size: 24px;
    margin: 10px auto;
  }
}
.header-holder h5 {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .header-holder h5 {
    font-size: 18px;
  }
}

.description {
  width: 80%;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 20px;
}
@media screen and (max-width: 1023px) {
  .description {
    width: 90%;
    font-size: 16px;
  }
}

.album-list {
  list-style: none;
}
.album-list li {
  display: flex;
  width: 80%;
  margin: 150px auto;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .album-list li {
    flex-direction: column-reverse;
    margin: 40px auto;
    width: 90%;
  }
}
.album-list li:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .album-list li:nth-child(2n) {
    flex-direction: column-reverse;
  }
}
.album-list .content-holder {
  width: 50%;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .album-list .content-holder {
    width: 90%;
    margin: 0 auto;
  }
}
.album-list .content-holder header {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .album-list .content-holder header {
    font-size: 16px;
  }
}
.album-list .content-holder p {
  margin: 20px auto 25px;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .album-list .content-holder p {
    margin: 5px auto 15px;
  }
}
.album-list .content-holder button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0px;
  background-color: #4d4d4d;
  cursor: pointer;
  transition: transform 0.3s;
}
.album-list .content-holder button:hover {
  transform: scale(1.2);
}
.album-list .content-holder button svg {
  fill: white;
  width: 50%;
  height: 100%;
}
.album-list figure {
  width: 40%;
  height: 350px;
  box-shadow: 0px 0px 5px dimgrey;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .album-list figure {
    width: 100%;
    margin: 0 0 20px;
    height: 200px;
  }
}
.album-list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.cover-photo {
  width: 80%;
  margin: 30px auto;
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 5px dimgrey;
}
@media screen and (max-width: 1023px) {
  .cover-photo {
    width: 90%;
    height: 200px;
  }
}
.cover-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.gallery-images {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1023px) {
  .gallery-images {
    width: 90%;
  }
}
.gallery-images li {
  width: 30%;
  margin: 0 1.5% 30px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0px 0px 5px dimgrey;
  flex-grow: 1;
}
@media screen and (max-width: 1023px) {
  .gallery-images li {
    width: 100%;
    margin: 0 auto 30px;
  }
}
.gallery-images li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*# sourceMappingURL=gallery.css.map */
