

.hero-hp__content {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  padding: 13px 0;
}

.hero-hp__video-wrapper {
  width: 100%;
}

.hero-hp__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  object-fit: cover;
  max-height: 750px;
}


.hero-hp__image img {
  border-radius: 25px;
}

.hero-hp__texts {
  position: absolute;
  bottom : 12px;
  left: calc(167 / 1920 * 100vw);
}

.hero-hp__texts::before {
  display: block;
  content: '';
  background-image: url(../../images/hero/aussillon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(949 / 1920 * 100vw);
  height: calc(163 / 1920 * 100vw);
}


.hero-hp__title {
  display: none;
}



@media all and (min-width: 1000px) {

  .hero-hp__content {
    padding: 13px 16px;
  }

  .hero-hp__texts {
    bottom: calc(9 / 1920 * 100vw);
  }

  .hero-hp__video {
    border-radius: 50px;
  }

  .hero-hp__image img {
    border-radius: 50px;
  }


}


