


.headerHP {
  min-height: calc(100vh - var(--header-height));
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.headerHP__background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.headerHP__background img,
.headerHP__background video {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.headerHP__top {
  padding: 3.5rem 7rem;
}
.headerHP__top__link {
  display: inline-block;
  width: 100%;
}
.headerHP__top__link img {
  width: 100%;
}
.headerHP__bottom__title {
  font-family: var(--font-family-DIN-1451-std);
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 7rem;
}
.headerHP__bottom__title.small {
  font-size: 5.5rem;
}
.headerHP__bottom__title.big {
  line-height: initial;
  height: 32rem;
  width: 98rem;
  margin-left: auto;
  margin-right: auto;
}
.headerHP__bottom__title.big span {
  opacity: 1;
}
.headerHP__bottom__title.white {
  color: #FFFFFF;
}
.headerHP__bottom__title.gold {
  color: #F6C143;
}
.headerHP__bottom__ctas {
  margin-bottom: 5.75rem;
}
.headerHP__bottom__ctas__cont {
  display: flex;
  align-items: center;
  justify-content: center;
}
.headerHP__bottom__ctas__cont__cta {
  width: 28rem;
  margin: 0 0.5rem;
}
.headerHP__bottom__video-btn {
  position: absolute;
  right: 7rem;
  bottom: 7rem;
}
.headerHP__bottom__video-btn__play {
  position: relative;
  height: 2.4rem;
  width: 2.4rem;
}
.headerHP__bottom__video-btn__play svg {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-white);
  transition: opacity 0.6s;
}
.headerHP__bottom__video-btn__play svg:first-child {
  opacity: 1;
}
.headerHP__bottom__video-btn__play svg:last-child {
  opacity: 0;
}
.headerHP__bottom__video-btn__play.active svg:first-child {
  opacity: 0;
}
.headerHP__bottom__video-btn__play.active svg:last-child {
  opacity: 1;
}
.headerHP__bottom__video-btn__sound-off {
  position: relative;
  height: 2.4rem;
  width: 2.4rem;
  margin-left: 7rem;
}
.headerHP__bottom__video-btn__sound-off svg {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-white);
  transition: opacity 0.6s;
}
.headerHP__bottom__video-btn__sound-off svg:first-child {
  opacity: 1;
}
.headerHP__bottom__video-btn__sound-off svg:last-child {
  opacity: 0;
}
.headerHP__bottom__video-btn__sound-off.active svg:first-child {
  opacity: 0;
}
.headerHP__bottom__video-btn__sound-off.active svg:last-child {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .headerHP__top {
    padding: 1.6rem 1.2rem;
  }
  .headerHP__bottom__title {
    margin-bottom: 6rem;
    padding: 0 0.8rem;
  }
  .headerHP__bottom__title.small {
    font-size: 6.5rem;
    line-height: 6.2rem;
  }
  .headerHP__bottom__title.big {
    font-size: 6.5rem;
    line-height: 6.2rem;
    line-height: 100%;
    width: 34.3rem;
    height: 26rem;
    margin-top: 7rem;
  }
  .headerHP__bottom__ctas {
    margin-bottom: 14.5rem;
  }
  .headerHP__bottom__ctas__cont {
    flex-direction: column;
  }
  .headerHP__bottom__ctas__cont__cta {
    margin: 0.5rem 0;
  }
  .headerHP__bottom__video-btn {
    right: initial;
    left: 0;
    bottom: 6.7rem;
    width: 100%;
  }
  .headerHP__bottom__video-btn__play {
    position: absolute;
    left: 1.9rem;
  }
  .headerHP__bottom__video-btn__sound-off {
    position: absolute;
    right: 1.9rem;
  }
}