﻿@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

body {
    /*overflow-x: hidden;*/
    max-width: 1023px;
    min-height: 100vh;
    margin: 0 auto;
    background-color: #000;
    /* font-family: 'Montserrat', sans-serif; */
}
strong {
    color: #1c1930;
    font-weight: 600;
}
.bgc-effect{
    position:fixed;
    top:0;
    left:0;
    width:3000px;
    height:100%;
    z-index: -1;
}
.moving-clouds {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: cloudLoop 80s linear infinite;
    animation: cloudLoop 80s linear infinite;
}

@keyframes cloudLoop {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

.lb-data .lb-close {
    /*position: absolute;
    top: 0;
    right: 36px;*/
}

header {
    background: url('https://trungbayonline.hoangthanhthanglong.vn/assets/img/background/bg.jpg');
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 6px 24px;
}

header .logo img{
    width:100%;
}

    header .title {
        font-size: 18px;
        color: #fff;
        font-weight: 600;
        text-align: center;
        display: flex;
        flex-direction: column;
        flex: 1;
        text-align: center;
        text-transform: uppercase;
        font-family: 'Montserrat', sans-serif;
    }

.breadcrumb {
    width: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 6px;
    background-color: #fff;
    padding: 6px 20px;
    align-items: center;
}

.breadcrumb a {
    color: #e48b8b;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

.breadcrumb span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.breadcrumb .select-lang{
     position: relative;
}
.breadcrumb .select-lang span{
    width:76px;
    display:block;
}
.breadcrumb .selected-lang{
   
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid;
    border-radius: 10px;
    height: 32px;
    cursor: pointer;
    padding: 0 12px;
}
.breadcrumb .option-lang {
    
    width: 100%;
    position: absolute;
    top: calc(100% + 12px);
    background: #fff;
    z-index: 1;
    box-shadow: 0 0px 5px #FF0000;
    border-radius: 8px;
    overflow:hidden;
    display:none;

}
.breadcrumb .item-lang {
    display:flex;
    padding: 4px 12px;
    cursor:pointer;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
.breadcrumb .item-lang:hover{
    background: #e6e6e6;
}



.details-hv {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*max-width: 90%;*/
    max-width: 1023px;
    margin: 0px auto;
}

    .details-hv .title {
        width: 100%;
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        padding: 10px 20px;
        /*text-transform: capitalize;*/
        background-color: #fff;
        margin-bottom: 0;
        border-bottom: 1px solid #ccc;
    }

.list-card {
    width: 100%;
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #fff;
}

    .list-card .btn-arrow {
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 24px;
        height: 24px;
        background-color: antiquewhite;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100rem;
        box-shadow: 0 0 6px #ccbdbd;
        cursor: pointer;
    }

        .list-card .btn-arrow.prev {
            left: 24px;
        }

        .list-card .btn-arrow.next {
            right: 24px;
        }

    .list-card .card {
        width: 100%;
        padding: 12px;
        border: 0px solid #e6e6e6;
        display: flex;
        gap: 24px;
    }

        .list-card .card:nth-child(1) .content {
            justify-content: flex-start;
        }

        .list-card .card:nth-child(even) {
            flex-direction: row;
        }

        .list-card .card:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .list-card .card .thumbnail {
            width: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .list-card .card .thumbnail a {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .list-card .card .thumbnail img {
                width: 100%;
                max-height:500px;
                object-fit: contain;
                border-radius: 10px;
            }

        .list-card .card .content li {
            list-style: none;
        }

        .list-card .card .content {
            flex: 1;
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-height: 152px;
            justify-content: center;
        }

            .list-card .card:not(.first) .content p::first-letter {
                font-family: "Agbalumo";
                font-size: 2em;
                font-weight: 500;
                color: rgb(37, 36, 36);
                letter-spacing: 2px;
            }

            .list-card .card .content p {
                margin-bottom: 0;
                font-size: 16px;
                line-height: 24px;
            }

            .list-card .card .content span {
                font-weight: 600;
            }

footer {
    margin-top: 36px;
    padding: 20px 5%;
    background-color: #1e0e0e;
    color: #fff;
}

.footer-top {
    display: flex;
}

footer .logo {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
}

    footer .logo .title {
        text-align: center;
    }

footer .contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    footer .contact .title {
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    footer .contact ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    footer .contact li {
        list-style: none;
        display: flex;
        gap: 12px;
    }

        footer .contact li span:nth-child(1) {
            width: 100px;
            font-weight: 600;
            flex-shrink: 0;
        }

        footer .contact li span:nth-child(2) {
            display: flex;
            flex-direction: column;
        }


footer a {
    text-decoration: none;
    color: #fff;
}

footer i {
    margin-right: 12px;
}

footer p {
    margin-bottom: 0;
}

.coppyright {
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    color: #ddd;
}

@media screen and (max-width: 500px) {
    header{
        padding: 6px 12px;
    }
    header .logo {
        width: 120px;
    }
    .breadcrumb .selected-lang span{
        display:none;
    }
    .breadcrumb .selected-lang{
        padding: 0 6px;
        border-radius: 6px;
    }
    .breadcrumb .option-lang{
        right: 0;
        width: 130px;
    }
        header .title {
        font-size: 14px;
    }

    .list-card .card {
        flex-direction: column !important;
    }

        .list-card .card .thumbnail {
            width: 100%;
            margin: 0 auto;
        }

            .list-card .card .thumbnail img {
                width: 80%;
            }

    .footer-top {
        flex-direction: column;
    }

    footer .logo {
        width: 100%;
        margin-bottom: 24px;
    }

    footer .contact ul {
        padding-left: 0;
    }
}
