.flex_layout.hero {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  background: #000000;
}

.flex_layout.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 180px;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    #000000
  );
}

.flex_layout.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), #000000); */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.flex_layout.hero .flex_layout_wrapper,
.flex_layout.hero .hero-section {
  height: 100%;
}

.flex_layout.hero .hero-media__layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.flex_layout.hero .hero-media__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex_layout.hero .holder {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.flex_layout.hero .hero-content {
  text-align: center;
  position: relative;
  max-width: 740px;
  padding: 0 20px;
  margin: 0 auto;
  z-index: 1;
}

.flex_layout.hero .hero-content h1 {
  font-weight: 600;
  font-style: italic;
  color: var(--white);
}

.flex_layout.hero .hero-content h1 span {
  display: block;
  font-size: clamp(
    21px,
    21px + (43 - 21) * ((100vw - 350px) / (1290 - 350)),
    43px
  );
  font-weight: 500;
  max-width: 478px;
  margin: 0 auto;
}

.flex_layout.hero .hero-cta__button {
  margin: 0 auto;
  margin-top: 40px;
  color: var(--white);
  border-color: var(--purple);
  background: var(--purple);
}
