/* 影片區 */
.video-text-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 5rem;
  padding: 10rem 120px;
  background-color: #6f1776;
}
.video-container {
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
}
.video-container video {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.text-container {
  /* flex: 1; */
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
}
@media screen and (max-width: 1280px) {
  .video-text-container {
    flex-direction: column;
    gap: 0;
    padding: 10rem 1rem;
  }
  .video-container,
  .text-container {
    max-width: 100%;
  }
}
.text-container .title {
  font-size: 30px;
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 10px;
  color: #ff53f1;
}
.text-container p {
  font-size: 20px;
  line-height: 1.6;
}
.video-warning {
  padding-top: 14px;
  color: #ee0b53;
}
