/*     1521015 : YouTube video player      */
/* farm */
.farm__1521015__ {
    display: table;
    width: 100%;
    height: 100vh; /* 높이를 100vh로 설정 */
}
.farm__1521015__ p {
    display: table-cell;
    margin: 0;
    background: #fafafa;
    color: #c40000;
    text-align: center;
    vertical-align: middle;
    height: 100%; /* 높이를 100%로 설정 */
}

/* player */
.player__1521015__ {
    position: relative;
    width: 100%;
    height: 100vh; /* 높이를 100vh로 설정 */
    overflow: hidden; /* 플레이어가 부모 요소를 넘치지 않도록 설정 */
background:#000
}
.player__1521015__ iframe,
.player__1521015__ embed,
.player__1521015__ object,
.player__1521015__ video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw; /* 뷰포트 너비에 맞춤 */
    height: 56.25vw; /* 16:9 비율 */
    min-height: 100vh; /* 최소 높이를 100vh로 설정 */
    min-width: 177.78vh; /* 최소 너비를 16:9 비율로 설정 */
    transform: translate(-50%, -50%); /* 중앙 정렬 */
    object-fit: cover; /* 비디오가 부모 요소를 꽉 채우도록 설정 */
    border: 0;
opacity:0.8
}

.player__1521015__ .caption_wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* 캡션을 비디오 위에 표시 */
}
.player__1521015__ .caption_wrap > div {
    display: table;
    width: 100%;
    height: 100%; /* 높이를 100%로 설정 */
    max-width: 1000px;
    margin: 0 auto;
}
.player__1521015__ .caption_inner {
    display: table-cell;
    vertical-align: middle;
    max-width: 1000px;
    padding: 0 15px;
    margin: 0 auto;
}
.player__1521015__ .caption_wrap p {
    line-height: 1.2em;
    margin: 0 0 30px;
    padding: 0;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: -0.03em;
text-align:center
}
.player__1521015__ .caption_wrap button {
    position: relative;
    border: 0;
    background: none;
    font-size: 14px;
    color: #ffffff;
}
.player__1521015__ .caption_wrap button:before {
    content: '';
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #01818c;
    opacity: .9;
}
.player__1521015__ .caption_wrap button span {
    display: block;
    position: relative;
    padding: 14px 15px;
}
.player__1521015__ .quick_btn {
    display: none;
}

@media (min-width: 1024px) {
    .player__1521015__ .caption_wrap p {
        font-size: 60px;
    }
    .player__1521015__ .caption_wrap button:before {
        width: 68px;
        height: 68px;
    }
    .player__1521015__ .caption_wrap button span {
        padding: 24px 26px;
    }
    .player__1521015__ .quick_btn {
        display: table;
        position: absolute;
        top: 0;
        bottom: 0;
        right: -400px;
        height: 100%;
        margin: auto;
        margin-top: -75px;
        opacity: 0;
        filter: Alpha(opacity=0);
        -webkit-transition: right 1.6s, opacity 4s cubic-bezier(.19,1,.22,1) 0.5s;
        transition: right 1.6s, opacity 4s cubic-bezier(.19,1,.22,1) 0.5s;
        z-index: 1;
    }
    .player__1521015__ .quick_btn.load {
        transition-delay: 1s;
        right: -110px;
        opacity: 1;
        filter: Alpha(opacity=100);
    }
    .player__1521015__ .quick_btn a {
        display: table-cell;
        vertical-align: middle;
        transform: rotate(90deg);
        transform-origin: left;
        font-size: 15px;
        font-weight: bold;
        color: #fff;
    }
    .player__1521015__ .quick_btn a img {
        margin-right: 5px;
        vertical-align: top;
    }
}


