/* was 191 */
/* Make these match the final header heights when design finalised. */
/* Sass variables for media queries */
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Parallax paragraphs */
.paragraph--type--parallax {
  position: relative;
  min-height: 200px;
  background: #000000;
  margin: 0 calc(50% - 50vw);
  opacity: 0;
}
.paragraph--type--parallax.loaded {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.paragraph--type--parallax .parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateZ(0);
}

@media (min-width: 600px) {
  .paragraph--type--parallax {
    min-height: 300px;
  }
}
.parallax-mirror {
  background: black;
}

.parallax-mirror img {
  opacity: 0.6;
}

.parallax-bg-img {
  display: none;
}
.no-parallax .parallax-bg-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.no-parallax .parallax-bg-img article, .no-parallax .parallax-bg-img div, .no-parallax .parallax-bg-img img {
  height: 100%;
}

.parallax-content {
  position: relative;
  z-index: 1;
  padding: 5vh 5vw;
  width: calc(100vw - 10vw);
  background-color: transparent;
  text-align: center;
}
html[data-theme=light] .parallax-content {
  color: #ffffff;
}
html[data-theme=dark] .parallax-content {
  color: #D7D7D5;
}

.parallax-content h1 {
  padding: 0;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -1px;
  background-color: transparent;
}
html[data-theme=light] .parallax-content h1 {
  color: #ffffff;
}
html[data-theme=dark] .parallax-content h1 {
  color: #D7D7D5;
}

.parallax-content h2 {
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -1px;
  background: transparent;
}
html[data-theme=light] .parallax-content h2 {
  color: #ffffff;
}
html[data-theme=dark] .parallax-content h2 {
  color: #D7D7D5;
}

@media (min-width: 768px) {
  .parallax-content {
    padding: 50px 70px;
  }

  .parallax-content h1 {
    font-size: 130px;
  }

  .parallax-content h2 {
    font-size: 86px;
  }
}
.parallax-content p {
  font-size: 30px;
  background-color: transparent;
}
html[data-theme=light] .parallax-content p {
  color: #ffffff;
}
html[data-theme=dark] .parallax-content p {
  color: #D7D7D5;
}

.parallax-content a {
  padding: 8px 15px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
  transition: 0.3s all ease;
}
html[data-theme=light] .parallax-content a {
  border: 2px solid #AE928A;
}
html[data-theme=dark] .parallax-content a {
  border: 2px solid #D3C5BC;
}
html[data-theme=light] .parallax-content a {
  color: #ffffff;
}
html[data-theme=dark] .parallax-content a {
  color: #D3C5BC;
}

.parallax-content a:hover {
  transition: 0.3s all ease;
}
html[data-theme=light] .parallax-content a:hover {
  color: #D7D7D5;
}
html[data-theme=dark] .parallax-content a:hover {
  color: #D7D7D5;
}
html[data-theme=light] .parallax-content a:hover {
  border: #D3C5BC;
}
html[data-theme=dark] .parallax-content a:hover {
  border: #D3C5BC;
}

/* End parallax */

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