.hero {
  max-height: 100vh;
  min-height: 800px;
  height: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
}
.hero::before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  transition: background 0.25s ease;
}
.hero:hover::before {
  background: rgba(0, 0, 0, 0.44);
}
.hero .video-wrapper {
  display: none;
}
.hero.video-playing .video-wrapper {
  display: flex !important;
  position: fixed;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  z-index: 901;
}
.hero.video-playing .video-wrapper iframe {
  width: 90%;
  height: 90%;
  border-radius: 30px;
}
.hero.with-background .text-wrapper {
  color: white;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: var(--nd-max-width, 1440px);
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  transition: transform 0.25s ease;
}
.hero .content-wrapper .text-wrapper,
.hero .content-wrapper .cta-wrapper {
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeInUp 0.55s ease-out forwards;
}
.hero .content-wrapper .cta-wrapper {
  animation-delay: 0.12s;
}
@media (max-width: 1440px) {
  .hero .content-wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 450px) {
  .hero .content-wrapper {
    margin-bottom: 50px;
  }
}
.hero .content-wrapper .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 450px) {
  .hero .content-wrapper .text-wrapper {
    margin-top: 50vh;
  }
}
.hero .content-wrapper .text-wrapper p {
  margin: 0;
}
.hero .content-wrapper .text-wrapper .subtitle {
  font-size: 2rem;
  font-weight: normal;
  line-height: 3rem;
  max-width: 650px;
}
@media (max-width: 450px) {
  .hero .content-wrapper .text-wrapper .subtitle {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.hero .content-wrapper .text-wrapper .subtitle strong {
  font-weight: bold;
  color: var(--nd-color-accent, #FCDF14);
}
.hero .content-wrapper .text-wrapper .presentation {
  font-size: 1.5rem;
  line-height: 2.5rem;
  max-width: 650px;
}
@media (max-width: 450px) {
  .hero .content-wrapper .text-wrapper .presentation {
    font-size: 20px;
    line-height: 2rem;
  }
}
.hero .content-wrapper .cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero .content-wrapper .cta-wrapper .main-cta {
  color: var(--nd-color-black, #000000);
  background: var(--nd-color-accent, #FCDF14);
  text-decoration: none;
  border-radius: 30px;
  padding: 5px 20px;
  align-self: flex-start;
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero .content-wrapper .cta-wrapper .main-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.hero .content-wrapper .cta-wrapper .video-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 18px;
}
.hero .content-wrapper .cta-wrapper .video-cta::after {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/pictos/play-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.hero:hover .content-wrapper {
  transform: translateY(-2px);
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero .content-wrapper,
  .hero .content-wrapper .text-wrapper,
  .hero .content-wrapper .cta-wrapper {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero .content-wrapper .cta-wrapper .main-cta {
    transition: none;
  }
}

/*# sourceMappingURL=landing_style.css.map */
