
.videos .main figure {
    position: relative;
}
.videos .main figure .thumbnail img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}
.videos .list-video figure .thumbnail,
.videos .relate figure .thumbnail,
.videos .main figure .thumbnail {
    overflow: hidden;
}
.videos .list-video figure .thumbnail:hover img,
.videos .relate figure .thumbnail:hover img,
.videos .main figure .thumbnail:hover img {
    -webkit-transform: scale(1.09) rotate(0.5deg);
    transform: scale(1.09) rotate( 0.5deg);
}
.videos .main figure .detail {
    bottom: 0;
    left: 0;
    padding: 30px;
    width: 100%;
    position: absolute;
    background: linear-gradient(0deg,rgba(0,0,0,.8) 0%,rgba(0,0,0,.8) 50%,rgba(0,0,0,0) 100%);
}
 
.videos .main figure .detail .top {
    display: flex;
}
.videos .main figure .detail .bottom .watch .icon ,
.videos .main figure .detail .bottom .watch a:hover,
.videos .main figure .detail .center .title a:hover,
.videos .main figure .detail .top a:hover {
    color: var(--color-yellow-1);
}
.videos .main figure .detail .top a,
.videos .main figure .detail .top .date {
    color: var(--color-grey);
}
.videos .main figure .detail .top .date::before {
    content: '|';
    margin: 0 0.25em 0 0.45em;
    font-weight: lighter;
    color: var(--color1-2);
    opacity: .5;
}
.videos .main figure .detail .bottom .watch a,
.videos .main figure .detail .center .title a {
    color: var(--color-white-1);
} 

.videos .relate figure {
    display: flex;
}
.videos .relate figure .thumbnail img {
    width: 320px;
    height: 156px;
    object-fit: cover;
}

.videos .relate .right {
    width: 50%;
    padding-left: 15px;
}
.videos .list-video figure .detail {
    padding: .7rem 0;
}
.videos .list-video figure .detail .top,
.videos .relate .right .top {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    gap: 30px;
}
.videos .list-video figure .detail .top .date,
.videos .list-video figure .detail .top .category,
.videos .list-video figure .bottom .title a:hover,
.videos .relate .right .bottom .title a:hover,
.videos .relate .right .top .category ,
.videos .relate .right .top .date {
    color: var(--color-grey);
}
.videos .list-video figure .detail .top .category:hover,
.videos .relate .right .top .category:hover {
    color: var(--color-back-1);
}
.videos .list-video .bottom .title a,
.videos .relate .right .bottom .title a {
    font-size: 1rem;
    color: var(--color-back-1);
}
.videos .list-video .bottom .title .icon,
.videos .relate .right .bottom .title .icon {
    font-size: 1rem;
    color: var(--color-yellow-1);
}

.videos .list-video .show-more {
    cursor: pointer;
    width: fit-content;
    padding: 12px 50px;
    color: var(--color-white-1);
    background-color: var(--color-back-1);
}
.videos .list-video .show-more:hover {
    color: var(--color-yellow-1);
}

/* laptop 1900 */
@media (min-width: 1600.9px) and (max-width: 1900px) {
}
/* laptop 1600 */
@media (min-width: 1445.9px) and (max-width: 1600px) {
    .videos .relate figure .thumbnail img {
        height: 156px;
    }   
}
/* laptop 1400 */
@media (min-width: 1280.9px) and (max-width: 1445px) {
    .videos .relate figure .thumbnail img {
        height: 156px;
    }   
}
/* ipad pro */
@media (min-width: 769.9px) and (max-width: 1280.9px) {
    .videos .relate figure .thumbnail img {
        height: 105px;
    } 
    .videos .main figure .thumbnail img {
        width: 100%;
        height: 347px;
        object-fit: cover;
    }
}
/* ipad */
@media (min-width: 576.9px) and (max-width: 769px) {
    .videos .row .col-5,
    .videos .row .col-7 {
        flex: 0 0 auto;
        width: 100%;
    }
}
/* mobile */
@media (max-width: 576px) {
    .videos .relate .right {
        width: 100%;
    }
    .videos .row .col-5,
    .videos .row .col-7 {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .main-breadcrumb .container .left select {
        width: 250px;
    }

    .videos .main figure .detail {
        padding: 10px;
    }
    
    .videos .relate figure {
        display: block;
    }
    .videos .relate figure .thumbnail img {
        width: 100%;
        height: 210px;
    }
    .videos .relate figure .right {
        padding: .7rem 0;
    }

    .videos .list-video .col-3 {
        flex: 0 0 auto;
        width: 100%;
    }
}