.arz-last-video-second {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.arz-last-video {
    height: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.arz-last-video-second .arz-last-video {
    width: calc(20% - .666666rem);
    height: 200px;
    margin-bottom: 1rem;
}
.arz-last-video__link {
    display: inline-block;
    height: 100%;
    width: 100%;
}
.arz-last-video__image-box {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.arz-last-video__image {
    height: 100%;
    transition-duration: .4s;
    transition-property: transform;
    transition-timing-function: ease;
    object-fit: cover;
    width: 100%;
}
.arz-last-video__image-box:not(.arz-image-loader)::after {
    background-color: rgba(0, 0, 0, .5);
    content: '';
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.3s;
    width: 100%;
}
.arz-last-video__title {
    bottom: 0;
    font-size: 12px;
    color: #FFF;
    padding: .5rem 1rem;
    position: absolute;
    right: 0;
}
.arz-last-video__time {
    background-color: #141414;
    border-radius: 22px;
    font-size: 12px;
    color: #FFF;
    left: 10px;
    height: 22px;
    padding: 2px;
    text-align: center;
    top: 10px;
    position: absolute;
    width: 60px;
}
.arz-last-video__play-icon {
    color: #FFF;
    left: 50%;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    
}
.arz-last-video__image-box.arz-image-loader ~ .arz-last-video__play-icon {
    display: none;
}
.arz-last-video__single .arz-last-video__play-icon {
    height: 50px;
    width: 50px;
}
.arz-last-video:hover .arz-last-video__image {
    transform: scale(1.1);
}
.arz-last-video:hover .arz-last-video__image-box::after {
    background-color: rgba(0, 0, 0, .8);
}

.arz-last-video-first{
    height: calc(400px + 1rem);
}
.arz-last-video-first__right{
    height: 100%;
    width: calc(40% - .5rem);
}
.arz-last-video-first__left{
    height: 100%;
    justify-content: space-between;
    align-content: space-between;
    width: calc(60% - .5rem);
}
.arz-last-video-first__left .arz-last-video{
    height: 200px;
    width: calc(33.333333% - .666666rem);
}

.arz-videos-box__title {
    background-color: #e2edf15e;
    color: #30505c;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 0;
    text-align: center;
}

.arz-videos-box__title-h1 {
    font-size: inherit;
    font-weight: inherit;
}


.arz-last-video__single .arz-last-video__title {
    padding: .8rem 2rem;
    font-size: 1.5rem!important;
}
.arz-category-page__videos{
    background-color: #FFF;
    padding: 0;
}
.arz-category-page__videos > div {
    margin-bottom: 1rem;
}
.arz-category-page__videos > div.arz-row-sb:nth-child(2n) {
    flex-direction: row;
}

@media (max-width: 1111px){
    .arz-last-video-first{
        height: auto;
        margin: 0!important;
    }
    .arz-last-video-first__right{
        height: 400px;
        width: 100%;
        margin: 0 0 1rem 0;
    }
    .arz-last-video-first__left{
        width: 100%;
    }
    .arz-last-video-first__left .arz-last-video{
        margin-bottom: 1rem;
    }
    .arz-last-video-second .arz-last-video{
        width: calc(33.333333% - .666666rem);
    }
}
@media (max-width: 767px){
    .arz-last-video-first__right{
        height: 300px;
    }
    .arz-last-video-first__left .arz-last-video,
    .arz-last-video-second .arz-last-video{
        width: calc(50% - .5rem);
    }
}
@media (max-width: 575px){
    .arz-category-page__videos{
        padding: 0 1rem;
    }
    .arz-last-video-first__right{
        height: 200px;
    }
    .arz-last-video-first__left .arz-last-video,
    .arz-last-video-second .arz-last-video{
        width: 100%;
    }
}