﻿ul.ListAlbumHome li {
    list-style: none;
}

ul.ListAlbumHome {
    display: grid;
    grid-auto-rows: minmax(min-content, max-content);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 15px;
    row-gap: 15px;
}

.WTopHomeNews h4.title-album-h {
    color: #fff;
}

li.item-list-left-album a img {
    display: block;
    width: 100%;
    height: 308px;
    object-fit: cover;
}

li.item-list-side-album a img {
    display: block;
    width: 100%;
    height: 633px;
    object-fit: cover;
}

ul.list-img-right-two {
}

li.item-list-right-album a img {
    display: block;
    width: 100%;
    height: 308px;
    object-fit: cover;
}

li.item-list-left-album:nth-child(2) {
    margin-top: 17px;
}

li.item-list-right-album:nth-child(2) {
    margin-top: 17px;
}

.WBottomHomeAlbum {
    margin-top: 68px;
}

.WHomeAlbum {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #392D2A;
}

.HomeAlbum {
    position: relative;
}

.WHomeAlbum:before {
    content: "";
    position: absolute;
    background: url(/Design/img/NhaHang/album.png) no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

ul.ListAlbumHome li > ul > li > a {
    position: relative;
}

    ul.ListAlbumHome li > ul > li > a:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 0%;
        background: #1f1917;
        opacity: 0;
        z-index: 1;
        transition: all .8s ease;
    }

    ul.ListAlbumHome li > ul > li > a:after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0%;
        height: 0%;
        background: #1f1917;
        opacity: 0;
        z-index: 1;
        transition: all .8s ease;
    }

ul.ListAlbumHome li > ul > li:hover > a:before {
    width: 100%;
    height: 100%;
    opacity: .6;
    transition: all .8s ease;
}

ul.ListAlbumHome li > ul > li:hover > a:after {
    width: 100%;
    height: 100%;
    opacity: .15;
    transition: all .8s ease;
}

@media(max-width:1023px) {
    .no-display-mobile-tablet {
        display: none !important;
    }

    ul.ListAlbumHome {
        column-gap: 10px;
        row-gap: 10px;
    }

    li.item-list-left-album a img {
        height: 105px;
    }

    li.item-list-left-album:nth-child(2) {
        margin-top: 12px;
    }

    li.item-list-side-album a img {
        height: 222px;
    }

    li.item-list-right-album a img {
        height: 105px;
    }

    li.item-list-right-album:nth-child(2) {
        margin-top: 12px;
    }

    .WHomeAlbum {
        padding-top: 15px;
        padding-bottom: 45px;
    }
}

@media(min-width:740px) and (max-width:1023px) {
    .no-display-tablet {
        display: none !important;
    }
}

@media(max-width:739px) {
    .no-display-mobile {
        display: none !important;
    }
}