.hero-secondary {
  position: relative;
  min-height: 412px;
  align-content: center;
}
@media screen and (min-width: 992px) {
  .hero-secondary {
    min-height: 500px;
  }
}
.hero-secondary--container {
  z-index: 1;
  position: relative;
  padding: 80px 16px 112px 16px;
  height: 100%;
  align-content: center;
}
@media screen and (min-width: 992px) {
  .hero-secondary--container {
    padding: 129px 16px 161px 16px;
  }
}
.hero-secondary--container h1 {
  color: var(--white);
  text-align: center;
  max-width: 1200px;
  margin: auto;
  font-weight: 200;
}
.hero-secondary--container .btn {
  margin: 24px auto 0 auto;
}
.hero-secondary--container-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hero-secondary--container-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.hero-secondary--container-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 80.41%,
      rgba(0, 0, 0, 0.7) 95.41%
    ),
    linear-gradient(180deg, rgba(25, 60, 96, 0) 25.03%, #193c60 100%);
}
.hero-secondary--anchor-button {
  position: absolute;
  mask: url(../images/fleche.svg) no-repeat center;
  mask-size: contain;
  background-color: var(--greenLight);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 80px;
  width: 80px;
  z-index: 1;
  transition: background-color 0.3s ease-in-out;
}

#hero-primary--anchor {
  position: absolute;
  bottom: 0;
}