.block-video {
    padding: 0 110px;
}

/*.video {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    height: 0;*/
/*    padding-bottom: 56.25%;*/
/*    background-color: #000000;*/
/*}*/

.video {
    position: relative;
    width: 100%;
    height: 475px;
    /* padding-bottom: 56.25%; */
    background-color: #000000;
    max-height: 475px;
    overflow: hidden;
}

#video__title {
    margin-bottom: 40px;
    font-family: Minion Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 36px;
    line-height: 43px;

    color: #000000;
}


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

.video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    object-position: center;
}

.video__button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 79px;
    height: 79px;
    border: none;
    background: rgba(255, 255, 255, 0.61);
    border-radius: 100%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.video__button-shape {
    fill: #212121;
    fill-opacity: 0.8;
}

.video__button-icon {
    fill: #ffffff;
}

.video__button:focus {
    outline: none;
}

.video:hover .video__button-shape,
.video__button:focus .video__button-shape {
    fill: #ff0000;
    fill-opacity: 1;
}

/* Enabled */

.video--enabled {
    cursor: pointer;
}

.video--enabled .video__button {
    display: flex;
}


.about_block-video {
    padding: 0 60px !important;
}

@media (max-width: 991px) {
    .video {
        position: relative;
        width: 100%;
        height: 100%;
        padding-bottom: 56.25%;
        background-color: #000000;
        max-height: 100%;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .block-video {
        padding: 0;
    }
}