.videoBlock{
    height: 720px;
    background-color: var(--default);
    position: relative;
}
.videoBlock__wrapper {
    width: 100%;
    height: 100%;
}
.videoBlock__video{
    max-width: 100%;
    display: block;
    height: 100%;
    margin: 0 auto;
}
.videoBlock__play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: none;
    height: 58px;
    width: 58px;
    border-radius: 3px;
    background-color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default);
    border: none;
    transition: .3s linear;
}
.videoBlock__play svg{
    fill: currentColor;
}
.videoBlock__play:hover{
    cursor: pointer;
    background-color: var(--accent);
}


@media screen and (max-width: 576px) {
    .videoBlock__video {
        /* object-fit: cover; */
    }
    .videoBlock {
        height: 300px;
    }
}

@media screen and (max-width: 450px) {
    .videoBlock {
        height: 230px;
    }
}