.video
{
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    background: #fff;
    margin: 30px 0;
}

.video .container
{
    position: relative;
    max-width: 1029px;
    width: 100%;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    background-image: url('../img/video.png');
    background-blend-mode: color;
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5); */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.138);
}

.video .container .imgBx
{
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid red;
}
.video .container .imgBx img
{
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.9;
    border: 1px solid red;
}

.video .container .play
{
    position: absolute;
    width: 90px;
    height: 65px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
}

.video .container .play:hover
{
    background: #ff0000;
    cursor: pointer;
}

.video .container .play .play-youtube
{
    position: relative;
    width: 27px;
    height: 32px;
    margin-left: 8px;
}

.video .container .play .play-youtube img
{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border: 1px solid red; */
}