.section-video {
    padding: 140px 0;
    overflow: hidden;
}

.section-video__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-video__title {
    text-transform: uppercase;
    font-size: 50px;
    line-height: 60px;
    font-weight: 900;
    margin: 8px 0 20px;
    color: #1a1a1a;
    text-align: center;
}

.section-video__divider {
    width: 80px;
    height: 4px;
    background: #f30101;
    margin: 10px auto;
}

.section-video__film {
    position: relative;
    max-width: 1170px;
    margin: 80px auto 0;
    aspect-ratio: 16 / 9;
}

.section-video__media {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    border: 0;
}

video.section-video__media {
    cursor: pointer;
}

.section-video__play-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.53);
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
    z-index: 9;
}

.section-video__play-button.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.section-video__play-button img {
    width: 64px;
    height: auto;
    transition: transform 0.3s ease;
}

.section-video__play-button:hover img {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .section-video {
        padding: 60px 0;
    }

    .section-video__title {
        font-size: 30px !important;
        line-height: 40px !important;
    }

    .section-video__film {
        margin-top: 40px;
    }
}
