:root {
    --nav-color: #fff;
    --bg-top-header: rgba(0, 0, 0, 0.7);
    --button-color: #8c4700;
    --text-light-color: #feffce;
    --title-news-color: #ffad43;
    --except-news-color: #ffdbad;
    --box-title-color: #f7da79;
    --link-hover-color: #ffad43;
}

html,
body {
    width: 100%;
    background-color: #010000;
    font-size: 13px;
    font-family: Play;
    /*color: #f7f7f7;*/
    text-align: center;
    position: relative;
    overflow-x: hidden;
}

@font-face {
    font-family: "Noto Sans";
    src: url("../../fonts/NotoSans-Regular.ttf") format("woff2"),
    url("../../fonts/NotoSans-Regular.ttf") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Noto Sans Medium";
    src: url("../../fonts/NotoSans.ttf") format("woff2"),
    url("../../fonts/NotoSans.ttf") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Play";
    font-style: normal;
    font-weight: 700;
    src: url("../../fonts/Play-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Play";
    font-style: normal;
    font-weight: 400;
    src: url("../../fonts/Play-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 400;
    src: url("../../fonts/Oswald/Oswald-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 500;
    src: url("../../fonts/Oswald/Oswald-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 600;
    src: url("../../fonts/Oswald/Oswald-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 600;
    src: url("../../fonts/Oswald/Oswald-Bold.ttf") format("truetype");
}

/*Top Header*/

.header-top {
    position: absolute;
    top: 1vw;
    width: 100%;
}

.header-top-body {
    background-image: url("../../images/bg-menu.png");
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: 100%;
    /*background: var(--bg-top-header);*/
    height: 2.3vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: relative;
}

.header-top-body .img-side-right,
.header-top-body .img-side-left {
    position: absolute;
    top: -1px;
    z-index: 9;
}

.header-top-body .img-side-right {
    right: -5px;
    left: auto;
}

.header-top-body .img-side-left {
    left: -7px;
    right: auto;
}

.header-logo-container {
    position: relative;
    width: 4vw;
}

.header-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    width: 4vw;
}

.header-logo a,
.header-logo img {
    width: 100%;
}

.header-menu .header-menu-item {
    height: 100%;
}

.header-menu .header-menu-item .header-menu-item-ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 2vw;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.header-menu .header-menu-item .header-menu-item-ul .sub-item a {
    font-family: Play;
    font-size: 0.8vw;
    font-weight: 400;
    line-height: 42px;
    letter-spacing: -0.06em;
    text-align: center;
}

.header-menu .header-menu-item .nav-link {
    color: var(--nav-color);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
}

.header-menu .header-menu-item .nav-link:hover {
    color: #edbe69;
}

.search-container {
    display: flex;
    align-items: center;
    height: 1.5vw;
    margin: auto 0;
    position: relative;
}

.search-container .search-icon {
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.search-container .search-icon svg {
    height: 1vw;
    width: 1vw;
}

.search-container .search-input {
    padding-left: 1.5vw;
    border: 1px solid #ccc;
    border-radius: 3px 0 0 3px;
    outline: none;
    height: 100%;
    background: #fffece;
    color: #908679;
    text-align: left;
    font-size: 0.8vw;
}

.search-container .search-input::placeholder {
    text-align: left;
}

.search-container .search-button {
    padding-right: 1vw;
    padding-left: 1vw;
    background-color: #ca1415;
    color: white;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-family: Play;
    font-size: 0.8vw;
    font-weight: 700;
    line-height: unset;
    letter-spacing: -0.02em;
    text-align: center;
    height: 100%;
}

.search-container .search-button:hover {
    background-color: #b71c1c;
}

/*Intro*/

.bg-intro {
    background-image:
        var(--intro-bg-image-top, url(../../images/cover/main-bg-top-min.jpg)),
        var(--intro-bg-image-bottom, url(../../images/cover/main-bg-bottom-min.jpg)),
        var(--intro-bg-base, #fff);
    background-position: center top, center bottom, center center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    /* quan trọng: gradient chỉ chiếm vùng giữa */
    background-size:
        100vw var(--intro-bg-top-height, auto),
        100vw var(--intro-bg-bottom-height, auto),
        100% var(--intro-bg-middle-height, auto);
    padding-top: 4vw;
}

.intro-body .download-container {
    width: 100%;
    height: 20vw;
}

.intro-body .download-container .logo-2 {
    right: 10%;
    width: 12%;
}

.intro-body .download-container .logo-2 img {
    width: 100%;
}

.intro-body .download-container .download-button {
    left: 4%;
    width: 17%;
}

.intro-body .download-container .download-button img {
    width: 100%;
}

.padding-left {
    padding-left: 16%;
}

.main-content-container {
    width: 100%;
    height: 25vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.main-content-container .left-side-bar {
    display: flex;
    flex-direction: column;
    width: 30%;
    background-image: url("../../images/cover/left-side-bar.png");
    background-position: left center;
    background-repeat: no-repeat;
    padding: 3% 2% 5% 3%;
    z-index: 10;
    height: 100%;
    justify-content: space-between;
    background-size: 100%;
}

.main-content-container .left-side-bar .group-nav {
    display: flex;
    gap: 1vw;
    flex-direction: column;
    z-index: 10;
    width: 100%;
    padding-top: 2.09vw;
}

.main-content-container .left-side-bar .nav-item {
    width: 100%;
}

.main-content-container .left-side-bar .nav-item img {
    width: 100%;
}

.main-content-container .content-box {
    height: 100%;
    width: 100%;
    position: relative;
}

.main-content-container .content-box .tab-content-container {
    width: 65%;
    height: 100%;
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 1;
}

.main-content-container .content-box .bg-image {
    position: absolute;
    top: -4vw;
    left: -5vw;
    right: auto;
    width: 100%;
}

.main-content-container .content-box .bg-image img {
    width: 100%;
}

.main-content-container
.content-box
.tab-content-container
.nav-pills
.nav-link,
.feature-container .main-container .tab-gallery .nav-pills .nav-link {
    width: 100%;
    font-family: Play;
    font-size: 0.8vw;
    font-weight: 700;
    line-height: unset;
    letter-spacing: -0.02em;
    text-align: center;
    background-image: url("../../images/vector/menu-btn-3.png");
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 1vw 0;
    background-size: contain;
    color: #fff;
}

.feature-container .main-container .tab-gallery .tab-content {
    margin-top: 10px;
}

.feature-container .main-container .tab-gallery .nav-pills .nav-link {
    height: 2vw;
    width: 5vw;
    background-size: contain;
    font-size: 0.7vw;
    padding: 0;
}

.feature-container .main-container .tab-gallery .nav-pills {
    gap: 3px;
    justify-content: start;
}

.main-content-container
.content-box
.tab-content-container
.nav-pills
.nav-link.active,
.feature-container .main-container .tab-gallery .nav-pills .nav-link.active {
    background-image: url("../../images/vector/menu-btn-3-active.png");
    color: #8c4700;
}

.main-content-container .left-side-bar .button-hotline .label-btn {
    margin-top: 0.5vw;
}

.image-btn {
    position: relative;
}

.image-btn .label-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--button-color);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
}

.image-btn.image-btn-4 .label-btn {
    padding-left: 10px;
    padding-bottom: 7px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.image-btn .label-btn.text-light-color {
    color: var(--text-light-color) !important;
}

.text.fs-12 {
    font-size: 0.6vw !important;
}

.text.fs-28 {
    font-size: 1.5vw !important;
}

.tab-pane .first-news {
    padding-left: 10px;
}

.first-news .content .title {
    font-size: 0.8vw;
    font-weight: 700;
    line-height: 16.2px;
    text-align: left;
    color: var(--title-news-color);
}

.first-news .photo {
    width: 30%;
}

.first-news .news-content-container {
    padding: 0 5px;
    width: 65%;
}

.first-news .news-content-container .title {
    font-weight: 700;
    text-align: left;
    color: var(--title-news-color);
}

.first-news .news-content-container .content {
    font-weight: 400;
    text-align: left;
    color: var(--except-news-color);
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-width: 100%;
}

.text-line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.main-content-container .list-news {
    padding-left: 1vw;
}

.main-content-container .list-news ul {
    /*list-style-image: url('../../images/vector/list-item-marker.png');*/
    list-style: none;
}

.main-content-container .list-news ul li {
    text-align: left;
    padding: 0.5vw 0.3vw;
}

.main-content-container .list-news ul li:before {
    display: block;
    content: url(../../images/vector/list-item-marker.png);
    height: 0.5vw;
    width: 0.5vw;
    position: absolute;
    left: 2%;
}

.main-content-container .list-news ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.nav-guide {
    gap: 5px;
}

.nav-guide .image-btn {
    width: 10vw;
}

.nav-guide .image-btn img {
    width: 100%;
}

/*Feature*/

.feature-container {
    display: flex;
    margin-top: 1vw;
}

.feature-container .left-side-bar {
    width: 30vw;
    background-image: url("../../images/cover/bg-left-side.png");
    background-position: left bottom;
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: 100%;
}

.feature-container .side-box-rank {
    width: 15vw;
    height: 20vw;
    background-image: url("../../images/cover/left-side-bar-2.png");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    padding-top: 2vw;
}

@media (max-width: 767.98px) {
    .feature-container .side-box-rank {
        width: unset !important;
    }
}

.feature-container .side-box-rank ul.ranks-table {
    padding: 20px 15px 8px 15px;
    overflow-y: scroll;
}

.scroll-style::-webkit-scrollbar {
    width: 4px;
}

.scroll-style::-webkit-scrollbar-track {
    background-color: transparent;
}

.scroll-style::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px var(--title-news-color);
    border-radius: 50px;
}

.feature-container .side-box-rank .ranks-table .rank-item {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.feature-container .side-box-rank .ranks-table .updating {
    display: flex;
    justify-content: center;
    color: #fff;
    padding-top: 7vw;
}

.feature-container .side-box-rank .title-box {
    width: 100%;
    position: absolute;
    top: -0.5vw;
    left: 0;
    text-align: center;
}

.feature-container .side-box-rank .title-box .title {
    width: 100%;
    color: var(--box-title-color);
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.02em;
    text-align: center;
}

.feature-container .side-box-rank .title-box .bg-img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.padding-left-20 {
    padding-left: 1vw !important;
}

.padding-top-3vw {
    padding-top: 3vw;
}

.space-between {
    justify-content: space-between;
}

.width-30 {
    width: 30%;
}

.width-70 {
    width: 70%;
}

.width-75 {
    width: 75%;
}

.width-100 {
    width: 100%;
}

.tab-gallery {
    padding-left: 5vw;
}

.feature-container .list-mon-phai {
    gap: 3px;
}

.sects-container .title-section {
    display: none;
}

.feature-container .list-mon-phai .sect-item {
    width: 6vw;
}

.feature-container .list-mon-phai .sect-item .photo img {
    width: 100%;
    height: 8vw;
    object-fit: cover;
}

.feature-container .main-container {
    padding-bottom: 4vw;
    margin-top: 0.7vw;
}

.gallery-photo-item-w {
    width: 20% !important;
    margin-right: 2vw !important;
}

.feature-container .main-container .content-box {
    width: 120%;
    height: 18vw;
    position: relative;
}

.feature-container .main-container .content-box .bg-image {
    position: absolute;
    top: 10px;
    left: -5px;
    width: 100%;
}

.feature-container .main-container .content-box .bg-image img {
    width: 95%;
}

.feature-container .main-container .content-box .key-features-container {
    display: flex;
    padding-left: 5vw;
    padding-top: 1vw;
    width: 100%;
}

.feature-container
.main-container
.content-box
.key-features-container
.title-horizontal {
    width: 2vw;
    font-size: 1vw;
    font-weight: 700;
    line-height: 1.5vw;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--title-news-color);
}

.feature-container .main-container .content-box .tab-content-container {
    width: 100%;
    padding-top: 3vw;
    padding-left: 2vw;
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 1;
}

.feature-container .list-feature {
    padding-left: 2vw;
}

.feature-container .list-feature ul {
    list-style-image: url("../../images/vector/list-item-marker-2.png");
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    padding-left: 0;
}

.feature-container .list-feature ul li {
    text-align: left;
    color: #fff;
    font-family: Noto Sans;
    font-weight: 500;
    /* line-height: 16.34px; */
    text-align: left;
    width: 30%;
}

.feature-container .list-feature ul li a {
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-width: 70%;
}

.feature-container .list-feature ul li a:hover {
    color: var(--title-news-color);
    font-weight: 700;
}

.first-news a {
    text-decoration: none;
}

.first-news .photo img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.list-news a {
    transition: 0.3s;
}

.list-news a:hover {
    color: var(--link-hover-color) !important;
}

/*slider*/

.slider-photo {
    position: relative;
    padding: 0 30px;
}

.slider-photo .swiper-button-next {
    right: 0;
}

.slider-photo .swiper-button-prev {
    left: 0;
}

.slider-photo .swiper-button-next:after {
    width: 2vw;
    height: 2vw;
    content: "";
    display: inline-block;
    background-image: url(../../images/vector/next-slider.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.slider-photo .swiper-button-prev:after {
    width: 2vw;
    height: 2vw;
    content: "";
    display: inline-block;
    background-image: url(../../images/vector/prev-slider.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/*footer*/

.bg-footer-home {
    background-image: url("../../images/cover/bg-footer-new-version.png");
    /*background-image: url('../../images/cover/bg-footer-home.png');*/
    /*background-position: top center;*/
    background-repeat: no-repeat;
    background-color: transparent;
    /*background-size: 119%;*/
    padding-top: 2.5vw;
    padding-bottom: 1vw;
    background-size: 122vw;
    background-position: left -5vw top 0vw;
}

footer.footer .footer-information {
    padding-left: 13vw;
}

footer.footer .footer-information .group-logo {
    display: flex;
    gap: 20px;
}

footer.footer .footer-information .group-logo a {
    display: block;
}

footer.footer .footer-information .policy-container {
    display: flex;
    gap: 0.7vw;
    margin-top: -3vw;
}

footer.footer .footer-information .policy-container .contact-icon-container {
    display: flex;
    gap: 0.8vw;
}

footer.footer .footer-information .information {
    display: flex;
    padding: 1vw 0;
    justify-content: space-between;
    align-items: center;
}

footer.footer .footer-information .information .company-information {
    display: flex;
    flex-direction: column;
    font-family: Oswald;
    text-align: left;
    color: #ffffff;
}

footer.footer
.footer-information
.information
.company-information
.company-name {
    font-size: 0.8vw;
    font-weight: 500;
    /* line-height: 20.75px; */
}

footer.footer
.footer-information
.information
.company-information
.license-information {
    font-size: 0.7vw;
    font-weight: 400;
    /* line-height: 17.78px; */
}

footer.footer
.footer-information
.information
.company-information
.license-information
p {
    margin-bottom: 0;
}

footer.footer
.footer-information
.information
.policy-container
.link-policy
a {
    font-weight: 700;
}

.tab-content .tab-coming-soon {
    color: #fff;
}

.gallery-photo-container {
}

.gallery-photo-container .gallery-photo-item img {
    width: 6vw;
    object-fit: cover;
    aspect-ratio: 8 / 7;
    border: 0.2vw solid #000000;
}

.mobile-main-menu {
    display: none;
}

.hamburger {
    padding: 0;
    margin-left: 10px;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 24px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    width: 25px;
    height: 4px;
    background-color: #fff;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
    background-color: #fff;
}

hr.style-eight {
    overflow: visible;
    /* For IE */
    padding: 0;
    border: none;
    border-top: medium double #934402;
    color: #934402;
    text-align: center;
    width: 100%;
}

hr.style-eight:after {
    content: "§";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.5em;
    padding: 0 0.25em;
    background: #faefd0;
}

.show-mobile {
    display: none;
}

.post-content-container img,
.post-content-container .image {
    max-width: 100%;
    height: auto;
}

@media (min-width: 767.97px) {
    .news-breadcrumb .section-title h3 {
        font-size: 1.1vw !important;
    }

    .news-container .post-title {
        font-size: 1.1vw !important;
    }

    .post-list .post-link .post-item .post-title h1 {
        font-size: 1vw !important;
    }

    .post-list .post-link .post-item .post-exception,
    .post-list .post-link .post-item .published-date {
        font-size: 0.8vw !important;
    }

    .related-post-list-container ul.related-post-list .post-link .post-title {
        font-size: 0.9vw !important;
    }

    .related-post-list-container ul.related-post-list .post-link {
        font-size: 0.9vw !important;
    }

    footer.footer
    .footer-information
    .policy-container
    .contact-icon-container
    img {
        width: 1.5vw;
        height: 1.5vw;
    }

    footer.footer .footer-information .group-logo img {
        min-height: 2vw;
        max-height: 2vw;
    }

    .feature-container .side-box-rank .ranks-table {
        height: 15vw;
    }

    html,
    body {
        font-size: 0.8vw;
    }

    .container {
        width: 80vw;
        max-width: none;
    }

    .main-content-container
    .content-box
    .tab-content-container
    .nav-pills
    .nav-item {
        width: 6vw;
    }

    .main-content-container .list-news ul li a {
        font-size: 0.7vw;
    }

    .image-btn.image-btn-4 .label-btn {
        font-size: 0.8vw;
    }

    .image-btn .label-btn {
        font-size: 0.8vw;
        line-height: 1vw;
    }

    .main-content-container .list-news ul {
        padding-left: 1vw;
        margin-bottom: 1vw;
    }

    .first-news .news-content-container .content {
        font-size: 0.7vw;
        line-height: 1vw;
        margin-bottom: 0.5vw;
    }

    .first-news .news-content-container .title {
        font-size: 0.8vw;
        line-height: 1vw;
        margin-bottom: 0.5vw;
    }

    .feature-container .side-box-rank .title-box .title {
        font-size: 0.8vw;
    }

    .feature-container .list-feature ul li {
        padding: 0.2vw;
        font-size: 0.7vw;
    }

    .feature-container
    .main-container
    .content-box
    .key-features-container
    .title-horizontal {
        width: 2vw;
        font-size: 1vw;
        font-weight: 700;
        line-height: 1.5vw;
        letter-spacing: -0.02em;
        text-align: left;
        color: var(--title-news-color);
    }
}

@media (max-width: 767.98px) {
    .first-news {
        margin-bottom: 3vw;
    }

    .main-content-container .list-news ul li {
        padding: 1.5vw 1vw;
    }

    .feature-container .side-box-rank .ranks-table .rank-item {
        font-size: 16px;
    }

    .slider-photo .swiper-button-next:after {
        width: 35px;
        height: 35px;
    }

    .slider-photo .swiper-button-prev:after {
        width: 35px;
        height: 35px;
    }

    footer.footer .footer-information .group-logo img {
        max-height: 42px;
    }

    footer.footer
    .footer-information
    .information
    .company-information
    .company-name {
        font-size: 14px;
        font-weight: 500;
        line-height: 20.75px;
    }

    footer.footer
    .footer-information
    .information
    .company-information
    .license-information {
        font-size: 12px;
        font-weight: 400;
        line-height: 17.78px;
    }

    footer.footer
    .footer-information
    .policy-container
    .contact-icon-container {
        display: flex;
        gap: 8px;
    }

    .feature-container .main-container {
        padding-bottom: 84px;
        margin-top: 10px;
    }

    .feature-container .side-box-rank .ranks-table {
        height: 225px;
    }

    .first-news .photo img {
        width: 101.44px;
        height: 79px;
        object-fit: cover;
    }

    .first-news .news-content-container .title {
        font-size: 14px;
        font-weight: 700;
        line-height: 16.2px;
        text-align: left;
        color: var(--title-news-color);
    }

    .text.fs-12 {
        font-size: 12px !important;
    }

    .feature-container .list-mon-phai .sect-item {
        min-width: 81px;
    }

    .feature-container .list-mon-phai .sect-item .photo img {
        width: 81px;
        height: 143px;
        object-fit: cover;
    }

    .main-content-container .content-box .bg-image {
        position: absolute;
        top: -70px;
        left: -90px;
        right: auto;
    }

    .show-mobile {
        display: block !important;
    }

    .hide-mobile {
        display: none !important;
    }

    .header-top {
        position: fixed;
        top: 0;
        z-index: 999;
    }

    .mobile-main-menu {
        display: block;
        width: 100%;
        height: 50px;
        background: #a99067;
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px,
        rgba(0, 0, 0, 0.23) 0px 3px 6px;
    }

    .mobile-header-top-body {
        width: 100%;
        height: 100%;
        padding: 8px;
    }

    .header-menu {
        display: flex;
        height: 100%;
        justify-content: flex-end;
        align-items: center;
    }

    .header-menu .nav-item {
        height: fit-content;
    }

    .mobile-header-top-body .header-logo {
        position: absolute;
        top: 5px;
        transform: unset;
        width: 13vw;
    }

    .image-btn {
        position: relative;
        width: fit-content;
    }

    .header-menu .image-btn img {
        width: 120px;
    }

    .bg-intro {
        background-position: center 50px, center bottom, center center;
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-size:
            160vw var(--intro-bg-top-height-mobile, auto),
            160vw var(--intro-bg-bottom-height-mobile, auto),
            100% var(--intro-bg-middle-height-mobile, auto);
        padding-top: 80px;
    }

    .padding-left {
        padding-left: 0;
    }

    .main-content-container {
        flex-direction: column;
    }

    .main-content-container
    .content-box
    .tab-content-container
    .nav-pills
    .nav-link,
    .feature-container .main-container .tab-gallery .nav-pills .nav-link {
        width: 95px;
        font-size: 13px;
        padding: 10px 0;
        color: #fff;
        background-size: contain;
    }

    .main-content-container {
        height: 60vw;
    }

    .main-content-container .content-box .tab-content-container .nav-pills {
        gap: 5px;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .main-content-container .content-box .tab-content-container {
        width: 100%;
        height: 100%;
    }

    .main-content-container .content-box .tab-content-container {
        top: 0;
    }

    .main-content-container .content-box .bg-image img {
        width: 165%;
    }

    .intro-body .download-container {
        height: 50vw;
    }

    .intro-body .download-container .logo-2 {
        right: 20px;
        width: 118px;
    }

    .intro-body .download-container .logo-2 img {
        width: 100%;
    }

    .main-content-container .list-news {
        padding-left: 0px;
    }

    .padding-left-20 {
        padding-left: 0px !important;
    }

    .width-75 {
        width: unset;
    }

    .padding-top-3vw {
        padding-top: unset;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #faefd0;
        display: none;
        z-index: 990;
        transition: background-color 0.3s ease-in-out;
    }

    .mobile-menu ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .mobile-menu ul li {
        margin: 10px 0;
        padding: 0 10px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .mobile-menu ul li a {
        text-decoration: none;
        color: #333;
        font-size: 18px;
    }

    .hamburger.is-active:hover,
    .hamburger:hover {
        opacity: unset;
    }

    .nav-guide {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
        margin: 50px 0;
        gap: 10px;
    }

    .main-container {
        width: 100%;
    }

    .sects-container {
        margin-bottom: 50px;
    }

    .sects-container .title-section {
        display: block;
        font-weight: bold;
        color: var(--title-news-color);
    }

    .feature-container .side-box-rank .title-box {
        width: 100%;
        top: -16px;
        max-height: 85px;
    }

    .feature-container .side-box-rank .title-box .image-btn {
        width: 100%;
        max-height: 85px;
    }

    .feature-container .side-box-rank .title-box img {
        width: 100%;
        max-height: 85px;
    }

    .feature-container .side-box-rank .title-box .title {
        line-height: 18px;
    }

    .feature-container .side-box-rank {
        background: #bfa376c9;
        height: 300px;
        border-radius: 0 0 10px 10px;
        padding-top: 60px;
        margin-bottom: 50px;
        box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    }

    .feature-container .main-container .content-box .key-features-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-left: 0;
        margin-left: 20px;
    }

    .feature-container
    .main-container
    .content-box
    .key-features-container
    .title-horizontal {
        width: 100%;
        text-align: center;
    }

    .feature-container .main-container .content-box .tab-content-container {
        width: 100%;
        padding-left: 0;
    }

    .feature-container .main-container .tab-gallery .nav-pills {
        gap: 3px;
        justify-content: center;
    }

    .feature-container .list-feature ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .feature-container .main-container .content-box .bg-image {
        width: 100%;
    }

    .feature-container .list-feature {
        padding-left: 30px;
    }

    .feature-container .list-mon-phai {
        overflow-x: scroll;
        padding-bottom: 10px;
    }

    .gallery-photo-container .gallery-photo-item img {
        width: 120px;
    }

    .bg-footer-home {
        background: #000;
    }

    footer.footer .footer-information {
        padding-left: 0;
    }

    footer.footer .footer-information .information {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .news-container {
        padding: 60px 10px 38px 10px !important;
    }

    .news-container .post-title {
        font-size: 15px;
    }

    .feature-container .main-container .tab-gallery .nav-pills .nav-link {
        width: 90px;
        background-size: 100%;
        font-size: 10px;
        padding: 0;
        height: 40px;
    }

    .nav-guide .image-btn.image-btn-4 {
        min-width: 220px;
    }

    .nav-guide .image-btn.image-btn-4 img {
        width: 220px;
    }

    .feature-container .main-container .content-box .bg-image img {
        width: 110%;
    }

    .tab-content-container .tab-gallery {
        margin-top: 20px;
    }

    .feature-container .main-container .content-box {
        height: 340px;
    }

    .image-btn .label-btn {
        font-size: 13px;
    }

    .feature-container
    .main-container
    .content-box
    .key-features-container
    .title-horizontal {
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: -0.02em;
        color: var(--title-news-color);
    }

    .feature-container .main-container .content-box .tab-content-container {
        padding-top: 60px;
        position: absolute;
        top: 5px;
        left: 0;
        z-index: 1;
    }

    footer.footer .footer-information .policy-container {
        display: flex;
        gap: 0.7vw;
        justify-content: space-between;
        width: 100%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
}

.sect-item .image-btn,
.sect-item .image-btn img,
.title-box .image-btn,
.title-box .image-btn img {
    width: 100%;
}

@media (max-width: 574px) {
    .main-content-container {
        height: 55vw;
    }

    .main-content-container .list-news ul li {
        padding: 2vw 1vw;
    }

    .main-content-container {
        height: 70vw;
    }

    .nav-guide .image-btn.image-btn-4 {
        min-width: 150px;
    }

    .nav-guide .image-btn.image-btn-4 img {
        width: 150px;
    }

    .main-content-container .content-box .tab-content-container {
        top: -10px;
    }
}

.pagination .active .page-link {
    background-color: #344416 !important;
    border-color: #344416 !important;
    color: white !important;
}

/** TAG 18+ HEADER **/
.tag-18 {
    position: absolute;
    right: 30%;
}

.tag-18 img {
    width: 75%;
}

@media (max-width: 768px) {
    .tag-18 {
        right: 23vw;
    }

    .tag-18 img {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .tag-18 {
        right: 10vw;
        top: 60px;
    }

    .tag-18 img {
        width: 50%;
    }
}

@media (min-width: 1920px) {
    .tag-18 img {
        width: 100%;
    }

    .tag-18 {
        right: 31%;
    }
}

@media (max-width: 425px) {
    .tab-content-container .tab-gallery {
        margin-top: 92px;
        width: 80%;
    }

    .gallery-photo-container .gallery-photo-item img {
        width: 100px;
    }

    .feature-container .list-feature {
        padding-left: 47px;
    }

    .feature-container .main-container .content-box .tab-content-container {
        padding-top: 40px;
    }

    .feature-container .list-feature ul li {
        line-height: 24px;
        width: 33%;
        font-size: 15px;
    }

    .feature-container .list-feature ul li a {
        max-width: 85%;
    }

    .feature-container .main-container .content-box .key-features-container {
        width: 90%;
    }

    .sects-container {
        margin-bottom: 28px;
    }

    .feature-container .side-box-rank {
        margin-bottom: 16px;
    }

    .first-news .news-content-container .content {
        -webkit-line-clamp: 3;
    }

    .nav-guide {
        margin: 55px 0 0 0;
    }

    .main-content-container .content-box .bg-image img {
        width: 180%;
    }

    .first-news {
        margin-bottom: 0vw;
    }

    .feature-container .main-container .content-box .bg-image img {
        width: 100%;
    }
}

@media (max-width: 375px) {

    .main-content-container .content-box .bg-image img {
        width: 200%;
    }

    .nav-guide {
        margin: 70px 0 0 0;
    }

    .feature-container .list-feature {
        padding-left: 37px;
    }

    .tab-content-container .tab-gallery {
        margin-top: 64px;
        width: 80%;
    }

    .gallery-photo-container .gallery-photo-item img {
        width: 100px;
    }

    .feature-container .main-container .content-box .tab-content-container {
        padding-top: 40px;
    }

    .feature-container .list-feature ul li {
        line-height: 24px;
        width: 33%;
        font-size: 13px;
    }

    .feature-container .list-feature ul li a {
        max-width: 85%;
    }

}

@media (max-width: 320px) {
    .first-news .news-content-container {
        padding: 0 24px;
    }

    .main-content-container .content-box .bg-image img {
        width: 235%;
    }

    .nav-guide {
        margin: 100px 0 0 0;
    }

    .tab-content-container .tab-gallery {
        margin-top: 47px;
        width: 80%;
    }

    .gallery-photo-container .gallery-photo-item img {
        width: 100px;
    }

    .feature-container .list-feature {
        padding-left: 24px;
    }

    .feature-container .main-container .content-box .tab-content-container {
        padding-top: 40px;
    }

    .feature-container .list-feature ul li {
        line-height: 24px;
        width: 33%;
        font-size: 13px;
    }

    .feature-container .list-feature ul li a {
        max-width: 85%;
    }
}
