.video_list .video{
    position: relative;
    cursor: pointer;



    width: 100%;
    height: 0;
    padding-bottom: 75%;
    background-color: #000000;

}


.video_list .video__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_list .video img{
    filter: brightness(0.6);

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video_list .video iframe{
    width: 100%;
    height: 100%;
    border: none;
}
.video_list .video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video__button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    padding: 0;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    transform: translate(-50%, -50%);
    cursor: pointer;
    background-image: url("../img/ico/play_video.svg");
}