/**************************************** 월페이퍼 시작 */

.wallpaper_wrap {
    width: 100%;
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 20px;
    grid-row-gap:20px;
    margin-bottom: 30px;
}

.wallpaper_con {
    width: 347px;
    height: 299px;
    cursor: pointer;
    transition: 0.4s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: 0.4s;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 20%);
}

.wallpaper_con:hover{
    box-shadow: 0px 5px 15px rgb(0 0 0 / 50%);
}

.wallpaper_thum {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
  }

  .wallpaper_thum img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

/**************************************** 월페이퍼 끝 */


/**************************************** 영상 시작 */

.sub_page_title_wrap.video{
    border-bottom: 0;
}

.video_wrap {
    width: 100%;
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 40px;
    margin-bottom: 30px;
}

.video_con {
    width: 100%;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
    transition: 0.4s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

  .video_thum {
    width: 100%;
    height: 195px;
    overflow: hidden;
    position: relative;
  }

  .video_thum img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
  }

  .video_cap {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
  }

  .video_cap p {
    font-family: 'twayair';
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .video_con:hover .video_cap p{
      color: #cc1e12;
  }

/**************************************** 영상 끝 */


/**************************************** 팝업 시작 */

.download_pop{
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.pop_back{
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    cursor: pointer;
}

.download_pop_con{
    width: 1240px;
    /* height: 600px; */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.btn_wrap {
    max-width: 1240px;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pop_up_slide{
    width: 100%;
    height: 100%;
}

.pop_up_slide .swiper-wrapper .swiper-slide{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pop_up_slide .swiper-wrapper .swiper-slide iframe{
    width: 100%;
    height: 600px;
}

.pop_slide_prev{
    left: -60px;
    filter: brightness(0) invert(1);
}

.pop_slide_next{
    right: -60px;
    filter: brightness(0) invert(1);
}

.download_pop_con i{
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

/**************************************** 팝업 끝 */

