.rs-stretch {
    position: relative;
    margin-top: calc(var(--bdrd) * -1);
    margin-bottom: calc(var(--bdrd) * -1);
}

.rs-stretch__wrapper {
    position: relative;
    height: 650px;
}

.rs-stretch__wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(40, 50, 75, 0.5);
    mix-blend-mode: color;
    z-index: 2;
}

.rs-stretch__wrapper video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
}

.rs-stretch__wrapper button {
    z-index: 3;
    position: absolute;
    bottom: 82px;
    right: 43px;
}

@media (min-width: 1921px) {
    .rs-stretch__wrapper button {
        right: calc((100% - 1920px) / 2);
    }
}