@font-face {
  font-family: "Aeonik";
  src: url("fonts/aeonik/medium.woff2") format("woff2"), url("fonts/aeonik/medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("fonts/aeonik/regular.woff2") format("woff2"), url("fonts/aeonik/regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("fonts/aeonik/bold.woff2") format("woff2"), url("fonts/aeonik/bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.Video.Detail.default {
  --video_height: 30rem;
  max-width: 92.5rem;
  position: relative;
}
.Video.Detail.default > .inner {
  cursor: pointer;
  position: absolute;
  top: 0;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 8;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .Video.Detail.default > .inner {
    overflow: hidden;
    content: "";
    left: 50%;
    max-width: 100.2vw;
    transform: var(--transform, translateX(-50%));
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 120rem;
    width: 92.5rem;
    min-width: 92.5rem;
    padding: 11.25rem;
  }
}
@media (min-width: 1024px) and (max-width: 768px) {
  .Video.Detail.default > .inner {
    max-width: 100vw;
  }
}
.Video.Detail.default > .inner > .left, .Video.Detail.default > .inner > .right {
  width: 50%;
  text-align: center;
}
@media (max-width: 768px) {
  .Video.Detail.default > .inner > .left, .Video.Detail.default > .inner > .right {
    width: 100%;
  }
}
.Video.Detail.default > figure {
  margin: 0;
  display: flex;
  overflow: hidden;
  content: "";
  left: 50%;
  max-width: 100.2vw;
  transform: var(--transform, translateX(-50%));
  position: relative;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 120rem;
  max-width: 92.5rem;
}
@media (max-width: 768px) {
  .Video.Detail.default > figure {
    width: 100%;
    max-width: 100vw;
    min-height: var(--video_height);
  }
}
.Video.Detail.default > figure img {
  object-fit: cover;
}
.Video.Detail.default > .video {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s;
  transition-delay: 0.5s;
}
.Video.Detail.default > .video.active {
  opacity: 1;
  visibility: visible;
}
.Video.Detail.default > .video iframe {
  max-height: var(--video_height);
}
.Video.Detail.default::after {
  pointer-events: none;
  content: "";
  left: 50%;
  max-width: 100.2vw;
  transform: var(--transform, translateX(-50%));
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 120rem;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  opacity: 0;
}
@media (max-width: 768px) {
  .Video.Detail.default::after {
    max-width: 100vw;
  }
}
.Video.Detail.default.playing > .inner {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .Video.Detail.default.playing::after {
    opacity: 1;
  }
}