@charset "euc-kr";
.youtube_header {
  position: relative;
  width: 100%;
  padding-bottom: 27%; /* 16:9 비율 */
  height: 0;
  overflow: hidden;
}
.youtube_header iframe {
  top: 50% !important;
  left: 50% !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  transform: scale(250%) translate(-50%, -50%);
  transform-origin: left;
  position: absolute;
}
.video_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0.2;
}
.youtube_header .youtube_content {
  position: absolute;
  top: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  display: flex;
  width: 100%;
  height: 100%;
  margin: auto;
  text-align: center;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 767px) {
  .youtube_bg01 .youtube_header {
    padding-bottom: 80%;
  }
  .youtube_header iframe {
    transform: scale(150%) translate(-50%, -50%);
    transform-origin: top;
  }
}
