.video-wrap {
    /* background: url("../images/play-bg-bg.png"); */
    background: rgb(83,18,26);
    background: -moz-linear-gradient(0deg, rgba(83,18,26,1) 0%, rgba(155,28,33,1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(83,18,26,1) 0%, rgba(155,28,33,1) 100%);
    background: linear-gradient(0deg, rgba(83,18,26,1) 0%, rgba(155,28,33,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#53121a",endColorstr="#9b1c21",GradientType=1);
    position: relative;
    overflow: hidden;
}
.video-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    /* bottom: 0; */
    right: 0;
    width: 680px;
    height: 770px;
    background-image: url("../images/play-bg-bg.png");
    background-repeat: no-repeat;
    background-position: center;
}
.bg-video-cell {
    height: 430px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.bg-video-cell::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 82px;
    height: 82px;
    background-image: url('../images/play-btn.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    transition: 0.5s;
}
.bg-video-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.bg-video-cell:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
}
.video-wrap h2 {
    font-weight: 700;
    color: #fff;
    font-size: 33px;
    line-height: 1.3;
    margin: 0 0 20px 0;
}
.video-wrap span {
    color: #FFFFFF;
    font-size: 14px;
    display: block;
    font-family: "Inter", sans-serif;
    margin: 0 0 20px 0;
}
.btn-style-4 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #BF2026;
    background: #ffffff;
    border-radius: 21px;
    padding: 12px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.btn-style-4 svg {
    margin: 0 10px 0 0;
    transform: scaleX(-1);
}
.btn-style-4 svg path {
    transition: 0.5s;
}
.btn-style-4:hover {
    background: #000;
    color: #fff;
}
.btn-style-4:hover svg path {
    stroke: #fff;
}
.smal-video-cell {
    width: 100%;
}
.smal-video-cell .img-cell {
    height: 170px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.smal-video-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s;
}
.smal-video-cell p {
    font-weight: 500;
    color: #FFFFFF;
    line-height: normal;
    margin: 10px 0 10px 0;
}
.smal-video-cell p span {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin: 15px     0 0 0;
}
.smal-video-cell time {
    font-family: "Inter", sans-serif;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 13px;
    color: #fff;
    width: 60px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.smal-video-cell:hover .img-cell img {
    transform: scale(1.1);
}