/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-video {
  overflow: hidden;
}
.s-video .l-container {
  overflow: visible;
}
.s-video__inner {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
}
.s-video__content {
  position: relative;
}
.s-video__cover {
  position: relative;
}
.s-video__cover::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.s-video__cover-img {
  width: 100%;
  height: auto;
  max-height: 33.75rem;
  object-fit: cover;
  display: block;
}
.s-video__animated, .s-video__video {
  width: 100%;
  height: auto;
  max-height: 33.75rem;
  object-fit: cover;
  display: block;
}
.s-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.s-video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.s-video__btn svg {
  height: 9.5625rem;
  width: auto;
}
.s-video__link {
  position: absolute;
  bottom: 2.5rem;
  transform: translateX(-50%);
  left: 50%;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  font-family: "remora-sans-w1", "sans-serif";
  color: var(--wp--preset--color--txt-white);
  text-transform: uppercase;
  border-bottom: 1px solid var(--wp--preset--color--bg-white);
}
.s-video__link {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .s-video__link {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-video__link {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .s-video__cover-img, .s-video__animated, .s-video__video {
    max-height: 25rem;
  }
  .s-video__btn svg {
    height: 6.875rem;
  }
  .s-video__link {
    bottom: 1.75rem;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 580px) {
  .s-video__cover-img, .s-video__animated, .s-video__video {
    max-height: 18.75rem;
  }
  .s-video__btn svg {
    height: 5rem;
  }
  .s-video__link {
    bottom: 1rem;
    font-size: 0.75rem;
  }
}