.video-right {
    width: 374px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    float: right;
    margin-left: 30px; 
    margin-bottom: 28px;
    position: relative;
}

.video-right__preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-right__button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 106px;
    height: 106px;
    background: transparent;
    border: 1px solid var(--color-text-light);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
}

.video-right__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-right__button img {
    position: relative;
    z-index: 2;
    right: -3px;
}

.video-right__button::after {
    content: '';
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.80);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.video-right__bg {
    opacity: 0.5;
    background: var(--color-primary);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    
}

@media screen and (max-width: 992px) {
    .video-right {
        width: 320px;
        height: 432px;
        margin-right: 20px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 650px) {
    .video-right  {
        float: none;
        margin: auto;
    }
}

@media screen and (max-width: 380px) {
    .video-right  {
        width: 100%;
    }
}
