* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: rgb(255, 255, 255);
}

.btn{
    display: flex;
    justify-content: center;
}

button{
    background-color: #FFC0C7;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
}
button:hover{
    background-color: #2196f3;
}
.main {
    width: 1200px;
    max-width: 100%;
    margin: auto;
    padding-bottom: 20px;
}

.nav {
    display: flex;
    align-items: center;
    width: 1200px;
    max-width: 100%;
    height: 48px;
    min-height: 48px;
    top: 0;
    background-color: #0d1721;
    position: fixed;
}

.nav__list {
    display: flex;
    list-style: none;
}

.nav__pc-list{
    display: flex;
    height: 48px;     
}

.nav__link {
    text-decoration: none;
    color: #fff;
    line-height: 48px;
    margin-left: 2px;
    padding: 0 20px;
    border-radius: 3px;
}

.title-home{
    font-size: 20px;
    background-color: #000000;
}

.nav__bars-btn{
    display: none;
    cursor: pointer;
}
.nav__link:hover{
    background-color: #000000;
    
}

h2{
    flex: 1;
}
.album, .py-5, .bg-light, .container, .row, .col{
    flex: 1;
}
small{
    color: #7d6c72;
}
small:hover{
    color: #f15e09;
}
/* contener */
.contener{
    width: 1200px;
    max-width: 100%;
    margin:30px auto;
}

.contener-layout{
    flex-wrap: wrap;
    margin-top: 36px;
    margin-bottom: 40px;
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: space-around;
}

.contener-item {
    background-color: #39526b;
    color: #fff;
    height: 400px;
    border-radius: 1px solid rgb(95, 95, 95);
    padding: 2px 2px;
    margin: 0;
    flex-basis: 20%;
    margin-bottom: 40px;
}

.item-img{
    width: 400px;
    height: 250px;
}

.item__heading{
    text-align: center;
}

.item__title{
    padding: 0 10px;
}

/* Het cantener */

.nav__overlay{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    animation: fadeIn linear 0.2s;
}

.nav__mobile{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    max-width: 100%;
    background-color: #1d2a35;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform linear 0.2s, opacity linear 0.2s;
}

.nav__mobile-list{
    margin-top: 50px;
    list-style: none;
}

.nav__mobile-link{
    text-decoration: none;
    color: #dddddd;
    display: block;
    padding: 12px 0;
    margin-left: 8px;
    font-size: 1.4rem;
}

.nav__mobile-list>li:hover{
    background-color: #000000;
}

.nav__mobile-close{
    width: 28px;
    height: 28px;
    color: #666;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

.nav__input{
    display: none;
}
.nav__input:checked ~ .nav__overlay{
    display: block;
}

.nav__input:checked ~ .nav__mobile{
    transform: translateX(0%);
    opacity: 1;
}
/* QR WhatsApp */
.header__navbar--item{
    margin: 15px 9px;
    position: relative;
    min-height: 26px;
    color: #fff;
    cursor: pointer;
}
.header__navbar--item-has-qr:hover .header__qr{
    display: block;
}
.header__navbar--item-separate::after{
    content:  "";
    display: block;
    position: absolute;
    height: 15px;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
}
.header__qr{
    width: 186px;
    position: absolute;
    left: 0;
    top: 90%;
    padding: 8px;
    border-radius: 2px;
    display: none;
    animation: fadeIn ease-in 0.4s;
    z-index: 1;
    box-shadow: 0 -2px 3px #6c757d;
}

.header__qr::before{
    position: absolute;
    left: 0;
    top: -16px;
    width: 100%;
    height: 20px;
    content: "";
    display: block;
}

.header__qr-img{
    width: 100%;

}
.pay-about{
    display: flex;
}
/* End QR WhatsApp */

/* css cho footer  */

.footer__conten{
    display: flex;
    justify-content: space-around;
    width: 1200px;
    max-width: 100%;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.1);
}

.footer__list{
    list-style: none;
}

.tooter__list-item{
    padding: 10px 0;
}

.tooter__list-item a{
    text-decoration: none;
}

.footer__title-mobile{
    display: none;
}

/* set color cho icon */

.header__navbar-iconf{
    color: #1877f2;
}
.header__navbar-iconw{
    color: #009f01;
}
.header__navbar-icont{
    color: #280d1e;
}
.header__navbar-icony{
    color: #e00c1e;
}

.coppying{
    display: flex;
    justify-content: center;
    width: 1200px;
    max-width: 100%;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.1);
}
.heading-title-mb{
    display: none;
}

/* Mobile & tablet */
@media (max-width: 1023px) {
    .nav__bars-btn{
        display: block;
        color:#2196F3;
        margin-left: 10px;
        
    }
   
    .contener-layout {
        flex-direction: row;
    }
    .footer__conten{
        display: flex;
        align-items: center;
   
        
    }
    .footer__list{
        display: flex;
        flex-direction: row;
        margin-left: 5px;

    }
    .heading-title-mb{
        display: block;
    }
  
}
/* Mobile */
@media (max-width: 739px) {
    .nav__bars-btn{
        display: block;
        color:#2196F3;
        margin-left: 10px;
        
    }
    .nav__pc{
        display: none;
    }
    .contener-layout {
        flex-direction: row;
    }
    .footer__conten{
        display: flex;
        flex-direction: column;
        
    }
    .footer__list{
        display: flex;
        flex-direction: row;
        margin-left: 5px;

    }
    .follow__mobile-icon{
        margin: 0 0 0 3px;
    }
    .footer__title{
        display: none;
    }
    .footer__title-mobile{
        text-align: center;
        display: none;
    }
    .heading-title-mb{
        display: block;
    }
    .me-img-mb{
        display: none;
    }
    
}

/* iPhone X */
@media (max-width: 812px) {
    .item__title{
        padding: 0 30px;
    }
    .nav__bars-btn{
        display: block;
        color:#2196F3;
        margin-left: 10px;
        
    }
    .nav__pc{
        display: none;
    }
    .contener-layout {
        flex-direction: row;
    }
    .footer__conten{
        display: flex;
        flex-direction: column;
        
    }
    .footer__list{
        display: flex;
        flex-direction: row;
        margin-left: 5px;

    }
    .follow__mobile-icon{
        margin: 0 0 0 3px;
    }
    .footer__title{
        display: none;
    }
    .footer__title-mobile{
        text-align: center;
        display: none;
    }
    .me-img-mb{
        display: none;
    }
}
@media (max-width: 568px) {
    .item__title{
        padding: 0 50px;
    }
    .nav__bars-btn{
        display: block;
        color:#2196F3;
        margin-left: 10px;
        
    }
    .nav__pc{
        display: none;
    }
    .contener-layout {
        flex-direction: row;
    }
    .footer__conten{
        display: flex;
        flex-direction: column;
        
    }
    .footer__list{
        display: flex;
        flex-direction: row;
        margin-left: 5px;

    }
    .follow__mobile-icon{
        margin: 0 0 0 3px;
    }
    .footer__title{
        display: none;
    }
    .footer__title-mobile{
        text-align: center;
        display: none;
    }
    .me-img-mb{
        display: none;
    }
}
@keyframes fadeIn{
    from{
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}