.custom-page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.custom-page-hero > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.custom-page-hero__content {
  padding: 200px 0 140px;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
.custom-page-hero__title {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  text-align: center !important;
}
.custom-page-hero__subtitle {
  font-size: 1.4rem;
  color: var(--gray-100);
  max-width: 750px;
  width: 100%;
  text-align: center;
}
.custom-page-hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s;
  border: none;
  background: var(--orange);
  color: var(--white) !important;
  max-width: 350px;
  width: 100%;
}
.custom-page-hero__btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}/*# sourceMappingURL=style.css.map */