/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.s-hero-home {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--black);
  overflow: hidden;
}
.s-hero-home > .l-wrapper {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.s-hero-home .l-container {
  width: 100%;
}
.s-hero-home__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.s-hero-home__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.s-hero-home__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.1) 100%);
}
.s-hero-home__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding-block: 4.5625rem;
  gap: 1rem;
}
.s-hero-home__copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 35rem;
}
.s-hero-home__title {
  margin: 0;
  color: var(--wp--preset--color--white);
  font-family: "the-seasons", serif;
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -1.68px;
}
.s-hero-home__title {
  font-size: 56px;
}
@media screen and (min-width: 569px) {
  .s-hero-home__title {
    font-size: calc(56px + 28 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-hero-home__title {
    font-size: 5.25rem;
  }
}
.s-hero-home__intro {
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  max-width: 30.3125rem;
  color: var(--wp--preset--color--white);
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  line-height: 1.41;
  font-weight: 500;
}
.s-hero-home__intro {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-hero-home__intro {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-hero-home__intro {
    font-size: 0.875rem;
  }
}
.s-hero-home__intro p {
  margin: 0;
}
.s-hero-home__intro p + p {
  margin-top: 0.5rem;
}
.s-hero-home__intro a {
  color: inherit;
  text-decoration: underline;
}
.s-hero-home__actions {
  flex-shrink: 0;
}
.s-hero-home__actions .c-buttons {
  display: inline-flex;
  flex-wrap: nowrap;
}
.s-hero-home__actions .c-btn {
  min-width: 16.875rem;
  flex: 1 1 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  justify-content: space-between;
}
.s-hero-home__actions .c-btn__label {
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .s-hero-home__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 3rem;
  }
  .s-hero-home__actions {
    width: 100%;
  }
  .s-hero-home__actions .c-buttons {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .s-hero-home .c-buttons {
    flex-wrap: wrap;
  }
  .s-hero-home .c-btn {
    min-width: unset;
  }
}