:root {
    --orange: #ff7e07;
    --orange-hover: #c46003;
    --black: #000;
    --blue-bold: #011079;
    --white: #fff;
}

@font-face {
    font-family: svn-bree;
    src: url(../fonts/BreeSerif-Regular.ttf);
}
@font-face {
    font-family: svn-agency;
    src: url(../fonts/SVN-Agency-FB-bold.ttf);
}
@font-face {
    font-family: svn-every;
    src: url(../fonts/SVN-Every-Movie-Every-Night.ttf);
}
.container-header {
    max-width: 1300px;
    margin: 0 auto;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.btn {
    display: inline-block;
    padding: 3px 20px 5px;
    font-family: svn-agency;
    line-height: normal;
    background: var(--white);
    color: #262626;
    border-radius: 5px;
    font-size: 18px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--orange);
    width: 100%;
    padding: 15px 0px;
    border-radius: 0px 0px 9999px 9999px;
}
.header-t {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.logo img {
    max-width: 200px;
}
.header-bt nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.header-bt nav ul li a {
    font-family: svn-agency;
    color: var(--white);
    position: relative;
    font-size: 18px;
    line-height: normal;
}
.header-bt nav ul li a:hover {
    color: var(--black);
}
.header-bt nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.header-bt nav ul li a:hover::after {
    transform: scaleX(1) !important;
}
.bg-menu {
    display: none;
}

@media (max-width: 1024px) {
    header {
        padding: 10px 0px;
    }
    .bg-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 100;
    }
    .header-bt {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 80%;
        background: var(--orange);
        z-index: 200;
        padding: 20px 15px 15px;
        transform: translateX(100%);
        transition: .3s linear;
    }
    .active {
        transform: translateX(0);
    }
    .logo img, .logo-mb img {
        width: 120px;
    }
    .logo-mb {
        margin-bottom: 20px;
    }
    .box-btn {
        display: flex;
        gap: 20px;
    }
    .header-bt nav ul {
        flex-direction: column;
        margin-top: 20px;
        align-items: start;
    }
    .close {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .header-t {
        margin-bottom: 0px;
        justify-content: space-between;
        padding: 0px 30px;
    }
    .header-bt nav ul li a::after {
        content: none;
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 100%;
        height: 2px;
        background-color: var(--black);
        transform: scaleX(0);
        transition: transform 0.3s ease-in-out;
    }
    .menu {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }
    .btn {
        display: inline-block;
        padding: 3px 15px 5px;
        font-family: svn-agency;
        line-height: normal;
        background: var(--white);
        color: #262626;
        border-radius: 5px;
        font-size: 14px !important;
    }
}
@media (max-width: 380px) {
    .logo img {
        width: 68px;
    }
}

/* Footer */
footer {
    background: url("https://res.cloudinary.com/dzvf9yvg4/image/upload/v1748321640/bg-ft_lbu2pw.png") no-repeat center center/cover;
    width: 100%;
    padding: 50px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.ft-container {
    display: flex;
    gap: 100px;
}
.ft-container h3 {
    font-family: svn-every;
    color: var(--white);
    font-size: 18px;
    line-height: normal;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.ft-container h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 80%;
    height: 3px;
    background-color: var(--orange);
}
.ft1, .ft2, .ft3 {
    width: 33%;
}
.ft1 .ft1-logo img {
    width: 250px;
    margin-bottom: 20px;
}
.ft1 .ft1-text p {
    font-family: svn-bree;
    color: var(--white);
    font-size: 16px;
    line-height: normal;
    margin-bottom: 20px;
}
.ft2 ul {
    display: flex;
    gap: 10px;
    align-items: center;
}
.ft2 ul li a img {
    width: 50px;
}
.ft3 ul a {
    font-family: svn-bree;
    color: var(--white);
    font-size: 16px;
    line-height: normal;
    margin-bottom: 20px;
    display: inline-block;
    margin-bottom: 5px;
}


@media (max-width: 768px) {
    .ft-container {
        flex-direction: column;
        gap: 20px;
        padding: 0px 20px;
    }
    .ft1, .ft2, .ft3 {
        width: 100%;
    }
    .ft1 .ft1-logo img {
        width: 150px;
        margin-bottom: 20px;
    }
    .ft2 ul {
        gap: 10px;
    }
    .ft2 ul li a img {
        width: 40px;
    }
    
}
footer hr {
    width: 70%;
    margin: 20px auto;
    height: 1px;
    background: #ffffff;
    border: none;
}

.fp-watermark {
    display: none !important;
}
.mb {
    display: none;
}
@media (max-width: 1024px) {
    .pc {
        display: none;
    }
    .mb {
        display: block;
    }
}
.tuyendung {
    margin-top: 10px;
}
.tuyendung a {
    font-family: svn-every;
    color: var(--white);
    font-size: 20px;
    line-height: normal;
    margin-bottom: 20px;
    display: inline-block;
}