/* Fotorama carousel section */
.carousel {
  position: relative;
  width: 100%;
}

.billboard {
  position: absolute;
  background-color: rgba(9, 17, 64, .6);
  bottom: 15%;
  left: 5%;
  max-width: 560px;
  padding-left: 1rem;
  border-radius: 15px;
  padding-bottom: 0.5rem;
}

.billboard h1,
.billboard h3 {
  color: var(--logo-yellow);
}

/* Audio section */
.player {
  position: relative;
  height: 30px;
  color: red;
}

/* Gallery section */
.site-map {
  width: 100%;
}

.gallery {
  display: flex;
  justify-content: center;
  margin: 1rem auto 0 auto;
  flex-wrap: wrap;
  max-width: 960px;
}

.page-launcher {
  position: relative;
  border: 2px solid var(--logo-orange);
  border-radius: 25px;
  height: 200px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  overflow: hidden;
}

.page-launcher img {
  max-height: 100%;
  max-width: 100%;
  height: 100%;
  width: auto;
  display: block;
  border-radius: 25px;
  opacity: 1;
}

.page-launcher:hover>img {
  opacity: 0.2;
}

.page-launcher .caption {
  color: var(--logo-orange);
  text-align: center;
  position: absolute;
  opacity: 0;
  max-width: 100%;
}

.page-launcher:hover>.caption {
  opacity: 1;
}

.button {
  position: relative;
  border: 2px solid var(--logo-orange);
  color: var(--logo-orange);
  background-color: none;
  border-radius: 25px;
  height: 50px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  overflow: hidden;
}

.button:hover {
  background-color: var(--logo-orange);
  color: var(--logo-yellow);
}

.sticky .caption {
  opacity: 1;
}

.sticky img {
  opacity: 0.2
}

.gallery h2 {
  color: var(--logo-orange);
}