.wp-site {
    background-image: url(./../images/home/bg-pc-789.jpg);
    background-size: 100% 100%;
    min-height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
}

/* main content */
.list-tag {
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;   
}

.list-tag .item {
    background-image: url(./../images/home/bg-tag-option.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
    transition: .3s;
}

.list-tag .item a {
    color: #fff;
    width: 100%;
    text-align: center;
}

.list-tag .item a:hover {
    color: #FC8F06;
}

@media screen and (max-width: 768px) {
    .wp-site {
        background-image: url(./../images/home/bg-mobile.png);
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        padding: 0px;
    }
    
    .wp-site {
        background: #111111;
        background-image: unset;
    }
    
    .list-tag .item a {
        font-size: 5vw;
    }

    .list-tag .item {
        height: 14vw;
        width: 100%;
    }

    .list-tag {
        gap: 12px;
    }    
}