.page-hero {
  height: 22.2222222222em;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 12.7777777778em;
  padding-bottom: 2.7777777778em;
  justify-content: center;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  .page-hero.has-button {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .page-hero {
    padding-top: 13.8888888889em;
  }
}
.page-hero::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, 0.67);
  top: 0;
  left: 0;
  position: absolute;
  z-index: 0;
}
.page-hero hgroup {
  text-align: center;
  position: relative;
}
.page-hero hgroup h1 {
  font-size: 3.8888888889em;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .page-hero hgroup h1 {
    font-size: 3.5555555556em;
  }
}
@media screen and (max-width: 500px) {
  .page-hero hgroup h1 {
    font-size: 2.8888888889em;
  }
}
.page-hero hgroup .subtitle {
  font-size: 1.3333333333em;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .page-hero hgroup .subtitle {
    font-size: 1.1111111111em;
  }
}
@media screen and (max-width: 500px) {
  .page-hero hgroup .subtitle {
    font-size: 1em;
  }
}
@media screen and (min-width: 992px) {
  .page-hero .round-button {
    position: absolute;
    right: 2.2222222222em;
    top: 50%;
  }
}
@media screen and (max-width: 991px) {
  .page-hero .round-button {
    margin: 2.2222222222em auto;
  }
}
@media screen and (max-width: 600px) {
  .page-hero .round-button {
    margin: 1.1111111111em auto;
  }
}

/** Set this a a global style **/
.round-button {
  display: flex;
  width: 10em;
  height: 10em;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .round-button {
    width: 10em;
    height: 10em;
  }
}
.round-button span {
  display: flex;
  align-items: center;
  height: 8em;
  width: 8em;
  font-size: 0.7777777778em;
  line-height: 1.14;
  font-weight: 700;
  border-radius: 50%;
  background-color: var(--ast-global-color-3);
  color: var(--ast-global-color-6);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .round-button span {
    width: 8em;
    height: 8em;
  }
}
.round-button::before {
  content: "";
  width: 92%;
  height: 92%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--ast-global-color-6);
  border-radius: 50%;
  opacity: 0.5;
  transition: all ease-in 0.3s;
}
.round-button::after {
  content: "";
  width: 35%;
  height: 35%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--ast-global-color-6);
  border-radius: 50%;
  opacity: 0.2;
  transition: all ease-in 0.3s;
}
.round-button:hover::before {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.round-button:hover::after {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/*# sourceMappingURL=page-hero.css.map */
