/* media-query */
.youtube-section {
  padding: 12rem 0;
}
.youtube-section .center {
  display: flex;
  align-items: center;
}
.youtube-section .center .video-title {
  width: 24%;
}
.youtube-section .center .video-title .main-title h2 {
  line-height: 1.2;
}
.youtube-section .center .video-title .main-title p {
  padding: 1.5rem 0 8rem;
  line-height: 1.4;
}
.youtube-section .center .video-title > a {
  display: block;
  width: 28.2rem;
  height: 8.2rem;
  border-radius: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border: 1px solid #333;
  transition: color 0.5s, border-color 0.5s, opacity 1s 0.2s;
  opacity: 0;
  color: #333;
}
.youtube-section .center .video-title > a.animate {
  opacity: 1;
}
.youtube-section .center .video-wrap {
  width: 76%;
  display: flex;
  align-items: center;
  gap: 2%;
}
.youtube-section .center .video-wrap .thumbnail {
  width: 70%;
  overflow: hidden;
}
.youtube-section .center .video-wrap .thumbnail iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(-25%);
  opacity: 0;
  filter: blur(3px);
  transition: all 1s;
}
.youtube-section .center .video-wrap .thumbnail.animate iframe {
  transform: translateY(0%);
  opacity: 1;
  filter: blur(0px);
}
.youtube-section .center .video-wrap .video-list {
  width: 30%;
  overflow-y: auto;
  max-height: 55rem;
  padding: 0 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  opacity: 0;
  transition: opacity 1s 0.2s;
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .youtube-section .center .video-wrap .video-list li:hover button img {
    filter: brightness(0.55);
  }
}
.youtube-section .center .video-wrap .video-list li button img {
  transition: filter 0.3s;
}
.youtube-section .center .video-wrap .video-list.animate {
  opacity: 1;
}

@media (max-width: 1400px) {
  .youtube-section .center .video-title {
    width: 40%;
  }
  .youtube-section .center .video-title .main-title p {
    padding: 1.5rem 0 5rem;
  }
  .youtube-section .center .video-wrap {
    width: 60%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .youtube-section .center .video-wrap .thumbnail {
    width: 100%;
  }
  .youtube-section .center .video-wrap .video-list {
    max-height: unset;
    width: 100%;
    flex-direction: row;
    overflow-y: hidden;
    overflow-x: scroll;
    gap: 0.6rem;
    padding: 0 0 2rem 0;
  }
  .youtube-section .center .video-wrap .video-list li {
    width: 30%;
    flex-shrink: 0;
  }
}
@media (max-width: 991px) {
  .youtube-section {
    padding: 55px 0;
  }
  .youtube-section .center {
    flex-direction: column;
  }
  .youtube-section .center .video-title {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 0 5rem 0;
    gap: 10px;
  }
  .youtube-section .center .video-title .main-title h2 {
    font-size: 32px;
  }
  .youtube-section .center .video-title .main-title p {
    padding: 1.5rem 0 0;
    font-size: 16px;
  }
  .youtube-section .center .video-title > a {
    width: 20rem;
    height: 6.5rem;
    font-size: 16px;
  }
  .youtube-section .center .video-wrap {
    width: 100%;
  }
  .youtube-section .center .video-wrap .video-list li {
    width: 45%;
  }
}/*# sourceMappingURL=section_youtube.css.map */