/* 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-video-text {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: visible;
  background: transparent;
}
.s-video-text > .l-wrapper {
  display: none;
}
.s-video-text__pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
}
.s-video-text__frame {
  background: #000;
  width: calc(100vw - 400px);
  max-width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin: 0 auto;
  flex-shrink: 0;
}
.s-video-text__frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) brightness(0.5);
  pointer-events: none;
}
.s-video-text__texts {
  position: relative;
  z-index: 20;
  color: #fff;
  width: 100%;
  text-align: center;
  padding-inline: 2rem;
  padding-bottom: 100vh;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}
@media screen and (max-width: 639px) {
  .s-video-text__texts {
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 1039px) {
  .s-video-text__texts {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 639px) {
  .s-video-text__texts {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.s-video-text .video-text {
  opacity: 0;
  max-width: 55rem;
  margin: 0 auto 9rem;
  color: #fff;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 400;
  font-variation-settings: "wght" 400;
}
@media screen and (max-width: 1039px) {
  .s-video-text .video-text {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 639px) {
  .s-video-text .video-text {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.s-video-text .video-text:last-child {
  margin-bottom: 0;
}