:root {
  --gold: #b4804f;
  --blue: #163351;
}

p {
  margin-bottom: 20px;
}

.pagewrapper {
  font-family: Fraunces, sans-serif;
  font-weight: 300;
}

.hero {
  background-color: #fff0;
  width: 100vw;
  min-height: 100vh;
  position: relative;
}

.herovid {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
}

.info-panel {
  z-index: 1;
  color: #929292;
  text-align: center;
  background-color: #fff;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 32px;
  line-height: 36px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.text-block {
  max-width: 50ch;
}

.info-panel-copy {
  max-width: 700px;
}

.show-hide {
  z-index: 2;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 11px;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 20px 20px auto auto;
}

.show-hide.w--current {
  z-index: 2;
  font-size: 32px;
  line-height: 32px;
  position: fixed;
}

.rich-text-block {
  line-height: 38px;
}

.gold {
  transform: scale3d(1none, 1none, 1none);
  color: var(--gold);
  transform-style: preserve-3d;
}

.paragraph {
  margin-bottom: 25px;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
}

.video-background-section {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  z-index: -999;
  background-color: #0000;
  width: 1000%;
  height: 100%;
  padding-bottom: 56.25%;
  position: absolute;
}

.video-embed-2 {
  opacity: .75;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

@media screen and (max-width: 991px) {
  .info-panel {
    justify-content: flex-start;
    align-items: center;
    font-size: 24px;
    line-height: 24px;
    overflow: auto;
  }

  .video-embed-2 {
    z-index: 1;
  }
}

@media screen and (max-width: 767px) {
  .info-panel {
    justify-content: flex-start;
    align-items: center;
    padding-left: 23px;
    padding-right: 23px;
    overflow: auto;
  }
}

@media screen and (max-width: 479px) {
  p {
    margin-bottom: 10px;
  }

  .herovid {
    height: 300px;
    margin-top: auto;
    margin-bottom: auto;
    inset: 0%;
  }

  .info-panel {
    font-size: 20px;
  }

  .show-hide {
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 30px;
  }
}


