/**
 * @file
 * Hero Styles
 */
.hero-container {
  position: relative;
  margin: 0 0 2rem 0;
}

.hero-container:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 5px;
  z-index: 10;
  background: #3bc5ee;
}

.hero-container h1.page-title {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 26rem 0 1rem;
  line-height: 5rem;
  z-index: 2;
  font-weight: 600;
  font-style: normal;
  font-size: 4.5rem;
  /* font-size: 5vw; */
  color: #ffffff;
  text-shadow: 0 3px 5px rgb(0 0 0 / 0.75);
}

@media only screen and (max-width: 1024px) {
  .hero-container h1.page-title {
    max-width: 100%;
    padding: 0 1rem;
  }
}

@media only screen and (max-width: 900px) {
  .hero-container h1.page-title {
    top: 15%;
    font-size: 4rem;
  }
}

@media only screen and (max-width: 768px) {
  .hero-container h1.page-title {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 600px) {
  .hero-container h1.page-title {
    top: -5%;
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 500px) {
  .hero-container h1.page-title {
    font-size: 2rem;
  }
}

.hero-container .page-title::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -15px;
  width: 70px;
  height: 3px;
  background: #3bc5ee;
}

@media only screen and (max-width: 768px) {
  .hero-container .page-title::after {
    bottom: 0;
    width: 45px;
  }
}

@media only screen and (max-width: 600px) {
  .hero-container .page-title::after {
    bottom: 10px;
    width: 40px;
    height: 2px;
  }
}

.hero-container .hero {
  position: relative;
  z-index: 1;
}

.hero-container .hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
}
