/**
 * Homepage
 */


.content-heading__hero {
  position: relative;
  overflow: hidden;
}

.content-heading__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.content-heading__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.content-heading__hero-title {
  color: white;
  font-size: 1.4rem;
  margin: 0;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  max-width: 750px;

}

@media (min-width: 450px) {
  .content-heading__hero-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 850px) {
  .content-heading__hero-title {
    font-size: 2.5rem;
    line-height: 60px;
  }
  .content-heading__hero-content {
    top: 50%;
  }
}

@media (min-width: 1200px) {
  .content-heading__hero-content {
    top: 30%;
  }
}
