.hero-primary {
  margin-top: -93px;
  position: relative;
  min-height: calc(100vh - 56px);
  align-content: end;
  padding: 112px 0;
  display: flex;
}
@media screen and (min-width: 992px) {
  .hero-primary {
    padding: 136px 0;
  }
}
.hero-primary--container {
  z-index: 1;
  position: relative;
  height: 100%;
  display: flex;
  align-self: flex-end;
}
.hero-primary--container h1 {
  color: var(--white);
  text-align: center;
  max-width: 1240px;
  margin: auto;
  font-weight: 200;
}
.hero-primary--container-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hero-primary--container-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.hero-primary--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-primary--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;
}