.video-section{
    padding: 84px 0;
    position: relative;
}
.video-section.color-white{
    color: var(--l-white);
}
.video-section.color-black{
    color: var(--l-black);
}
.video-section__before{
    background-color: var(--l-white);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}
.video-section__after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    background-color: var(--l-white);
}
.video-section__before.bg-black,
.video-section__after.bg-black{
    background-color: var(--l-black);
}
.video-section__before.bg-orange,
.video-section__after.bg-orange{
    background-color: var(--l-orange);
}
.bg-h-25 .video-section__before{
    height: 25%;
}
.bg-h-25 .video-section__after{
    height: 75%;
}
.bg-h-50 .video-section__before,
.bg-h-50 .video-section__after{
    height: 50%;
}
.bg-h-75 .video-section__before{
    height: 75%;
}
.bg-h-75 .video-section__after{
    height: 25%;
}
.bg-h-100 .video-section__before{
    height: 100%;
}
.bg-h-100 .video-section__after{
    height: 0%;
}

.iframe-box__head{
    position: relative;
    display: flex;
    flex-flow: row-reverse;
    align-items: flex-start;
    height: 88px;
    margin-top: -70px;

}
.iframe-box__head span{
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
    line-height: 1.4;
    /* width: 100px; */
}
.iframe-box__head span:before{
    content: '';
    clear: both;
    position: absolute;
    top: 15px;
    left: -100px;
    width: 85px;
    height: 100px;
    background-image: url('./img/row-video.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}
.color-black .iframe-box__head span:before{
    filter: invert(1);
}
.iframe-box__wrapp{
    border-radius: 20px;
    /* overflow: hidden; */
}
.iframe-box__wrapp iframe{
    margin: 0 auto;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    min-height: 540px;
    border-radius: 10px;
    overflow: hidden;
}

.iframe-box__wrapp iframe body .player{
    border-radius: 10px;
    overflow: hidden;   
}
@media screen and (max-width:920px) {
    .iframe-box__head{
        height: auto;
        min-height: 60px;
    }
}
@media screen and (max-width:767px) {
    .iframe-box__wrapp iframe{
        min-height: 240px;
    }
    .iframe-box__head{
        height: 88px;
        margin-top: -70px;
    }
    /* .iframe-box__head span{
        width: 100px;
    
    } */
    .iframe-box__head span:before{

        height: 88px;
    }
}
@media screen and (max-width:415px) {
    .iframe-box__head span{
        font-size: 0.875rem;
    }
    .iframe-box__head span:before{
        left: -80px;
        width: 70px;
        height: 75px;
    }
    .iframe-box__head{
        height: auto;
        min-height: 60px;
    }
}