/* HERO HP */
.hero-hp {
  background: url(../images/bg-fond.png), var(--sarcelle);
  padding-top: 130px;
  background-color: var(--sarcelle);
}
@media screen and (min-width: 768px) {
  .hero-hp {
    padding-top: 220px;
  }
}
.hero-hp .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero-hp .container {
    gap: 82px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 1281px) {
  .hero-hp .container {
    padding: 0 80px;
  }
}
.hero-hp .container-text {
  padding: 0 16px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .hero-hp .container-text {
    z-index: 1;
    max-width: 659px;
    width: 100%;
    padding: 75px 0 64px 0;
  }
}
@media screen and (min-width: 768px) {
  .hero-hp .container-text h1 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .hero-hp .container-text h1 strong {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 768px) {
  .hero-hp .container-text p {
    max-width: 427px;
    width: 100%;
    font-size: 1.25rem;
  }
}
.hero-hp .container-img {
  position: relative;
  height: 329px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .hero-hp .container-img {
    position: absolute;
    right: 0;
    height: 100%;
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .hero-hp .container-img {
    max-width: 885px;
  }
}
.hero-hp .container-img .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.hero-hp .container-img .blended {
  mix-blend-mode: darken;
  opacity: 0.4;
}
.hero-hp .container-animation-scroll {
  position: absolute;
  bottom: 32px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .hero-hp .container-animation-scroll {
    position: relative;
    left: 0;
    bottom: 64px;
  }
}
.hero-hp .container-animation-scroll span {
  position: relative;
  height: 82px;
  width: 1px;
  background-color: var(--sarcelleLight);
}
.hero-hp .container-animation-scroll span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 10px;
  background-color: var(--sarcelle);
  -webkit-animation: descend 2s ease-out 3s infinite;
          animation: descend 2s ease-out 3s infinite;
}
.hero-hp .container-animation-scroll p {
  color: var(--white);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 11.2px;
  text-transform: uppercase;
}

@-webkit-keyframes descend {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(80px);
  }
  100% {
    transform: translateY(80px);
  }
}

@keyframes descend {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(80px);
  }
  100% {
    transform: translateY(80px);
  }
}
/* END HERO HP */
