/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 1 version
*/

.full-video{
    background: #F9F9F9;
}

.full-video,
.full-video__wrap {
    position: relative;
    z-index: 1;
}

.full-video__pattern {
    position: absolute;
    right: -615px;
    bottom: -63px;
    z-index: -1;
}

.full-video__info {
    position: absolute;
    left: -10px;
    bottom: -103px;
    -webkit-filter: drop-shadow(0px 3px 13px rgba(0, 0, 0, 0.10));
            filter: drop-shadow(0px 3px 13px rgba(0, 0, 0, 0.10));
}

.full-video__info-wrap {
    background: #fff;
    width: 331px;
    padding: 12px 35px 12px 12px;
    border-left: 5px solid #DAA308;
    -webkit-clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
}

.full-video__info-wrap h4 {
    font-size: 16px;
    margin-bottom: 5px;
}


.video-bttn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(8,10,15,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-bttn svg {
    width: 72px;
    height: auto;
    transition: all .3s;
}

@media (min-width: 768px) {
    .full-video__info {
        bottom: -10px;
    }

    .full-video__info-wrap {
        width: 475px;
        padding: 15px 45px 15px 25px;
        -webkit-clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
                clip-path: polygon(0 0, 100% 0, 94% 100%, 0% 100%);
    }

    .full-video__info-wrap h4 {
        font-size: 18px;
    }

    .video-bttn svg {
        width: 109px;
    }
}

@media (min-width: 1025px) {
    .full-video__info-wrap h4 {
        font-size: 20px;
    }


    .video-bttn:hover svg {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}