@charset "UTF-8";

:root {
    --white: #fff;
    --black: #000;
    --primary: #002d7c;
    --second: #ffc107;
    --body: #140f08
}

h1,
h2,
h3,
h4,
h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25
}

a,
button,
i,
img {
    transition: all ease .4s
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeindown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@media screen and (max-width:996px) {
    .fadeindown {
        animation: none
    }
}

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

.blog-item .box-content h4 a,
.line-2,
.table-striped a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

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

.wrapper {
    display: flex;
    width: 100%;
    align-items: flex-start;
    padding-left: 10px;
    justify-content: center;
    padding-right: 10px
}

@media screen and (max-width:996px) {
    .wrapper {
        display: block;
        padding: 0
    }
}

.wrapper .main-content {
    flex-shrink: 0;
    flex: 1
}

.wrapper .banner-ads {
    flex: 1;
    max-width: calc((100vw - 1130px)/ 2);
    position: sticky;
    top: 50px;
    align-items: flex-start
}

@media screen and (max-width:996px) {
    .wrapper .banner-ads {
        display: none
    }
}

.wrapper .vuta-container {
    width: min(1130px, 100%)
}

.wrapper {
    padding-top: 15px;
    padding-bottom: 20px
}

.blog-item {
    margin-bottom: 10px
}

.blog-item .box-img {
    aspect-ratio: 3/2;
    margin-bottom: 10px
}

.blog-item .box-content h4 {
    font-size: 16px
}

.blog-item .box-content h4 a {
    color: #222
}

.blog-item .box-content h4 a:hover {
    color: var(--primary)
}

.blog-item.main-blog-item h4 {
    font-size: 20px
}

.main-content .aside .blog-item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5
}

.main-content .aside .blog-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.main-content .aside .blog-item a.cat {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700
}

.main-content .aside .blog-item h4 a {
    font-weight: 400
}

.table>thead {
    vertical-align: top
}

.table>thead th {
    white-space: nowrap
}

.box-title {
    display: flex;
    margin-bottom: 10px;
    justify-content: space-between
}

.box-title h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 10px
}

.box-title h2::before {
    width: 60px;
    background: var(--primary);
    left: 0;
    height: 3px;
    bottom: 0;
    content: "";
    position: absolute
}

.box-title a {
    color: #fff;
    font-size: 12px;
    display: flex;
    font-weight: 700;
    padding: 5px 15px;
    text-transform: uppercase;
    align-items: center;
    background: var(--primary)
}

.wrapper .box-img {
    border-radius: 10px;
    overflow: hidden
}

.box-title a {
    border-radius: 6px
}

.main-right {
    position: sticky;
    top: 50px
}

.blog-cat,
.main-left {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5
}

.blog-cat .blog-item .cat {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700
}

.break {
    margin-bottom: 20px
}

.break .box-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

@media screen and (max-width:996px) {
    .break .box-item {
        margin-bottom: 10px
    }
}

.break .box-item:hover .box-content a {
    background: var(--second)
}

.break .box-item>a {
    position: absolute;
    inset: 0;
    content: "";
    z-index: 2
}

.break .box-item .box-content {
    position: absolute;
    padding: 10px;
    content: "";
    background-image: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, .2), transparent);
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    inset: 0
}

.break .box-item .box-content a {
    background: var(--primary);
    font-size: 12px;
    padding: 8px 15px;
    border-radius: 6px;
    color: #fff
}

.break .box-item .box-content h4 {
    color: #fff
}

@media screen and (max-width:996px) {
    .break .box-item .box-content h4 {
        font-size: 14px
    }
}

.main-right .box-img {
    margin-bottom: 10px
}

.main-right .aside-item {
    padding: 15px;
    border: 1px solid #e5e5e5;
    margin-bottom: 10px;
    border-radius: 10px
}

.main-right .aside-item.bg {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary)
}

.main-right .aside-item.bg h3::before {
    background: #fff
}

.main-right .aside-item.bg .notice-slider .item {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5
}

.main-right .aside-item.bg .notice-slider .item a {
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
    gap: 5px;
    color: rgba(255, 255, 255, .7)
}

.main-right .aside-item.bg .notice-slider .item a:hover {
    color: #fff
}

.main-right .aside-item ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 10px
}

.main-right .aside-item ul li i {
    color: var(--primary)
}

.main-right .aside-item ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0
}

.main-right .aside-item ul li a {
    color: #000;
    line-height: 1.5
}

.main-right .aside-item ul li a:hover {
    color: var(--primary)
}

.main-right .aside-item h3 {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    padding-bottom: 8px
}

.main-right .aside-item h3::before {
    position: absolute;
    height: 3px;
    width: 64px;
    background: var(--primary);
    content: "";
    bottom: 0;
    left: 0
}

.table-striped {
    font-size: 13px
}

.table-striped a {
    color: #000
}

.table-striped a:hover {
    color: var(--primary)
}

.table-striped td:last-child a {
    text-align: center
}

@media screen and (max-width:996px) {
    .table-striped td:last-child a {
        text-align: right
    }
}

@media screen and (max-width:996px) {
    .table-striped td {
        min-height: 41px
    }
}

.vip-member {
    position: relative;
    display: inline-block;
    overflow: visible
}

.vip-member img {
    border: 2px solid gold;
    padding: 6px
}

.vip-member {
    overflow: unset !important;
    cursor: not-allowed
}

.vip-member::before {
    content: "\f521";
    font-family: FontAwesome;
    font-weight: 900;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: gold
}

.blog-cat {
    position: relative;
    z-index: 3
}

.vip-member::after {
    content: "Chỉ có thành viên mới có thể tải tài liệu này";
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: .3s
}

.vip-member:hover:after {
    opacity: 1
}

@keyframes vipGlow {
    0% {
        opacity: .3;
        transform: scale(1)
    }

    50% {
        opacity: .8;
        transform: scale(1.05)
    }

    100% {
        opacity: .3;
        transform: scale(1)
    }
}

.banner-slider .item img {
    min-height: 100px
}

.vuta-header .logo img {
    height: 100px;
    width: auto
}

.vuta-header ul li a:hover {
    color: var(--primary) !important
}

.vuta-header .header-top {
    background: #fff;
    border-bottom: 1px solid #e5e5e5
}

.vuta-header .header-top .weather {
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
    line-height: 32px;
    color: #757575;
    font-size: 14px
}

@media screen and (max-width:1200px) {
    .vuta-header .header-top .weather {
        padding-left: 10px;
        margin-left: 10px
    }
}

.vuta-header .header-top .weather::before {
    content: "";
    width: 1px;
    height: 26px;
    background: #e5e5e5;
    position: absolute;
    left: 0;
    top: 2px
}

.vuta-header .header-top .date {
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
    color: #757575;
    line-height: 32px;
    font-size: 14px
}

@media screen and (max-width:996px) {
    .vuta-header .header-top .date {
        padding-left: 10px;
        margin-left: 10px
    }
}

.vuta-header .header-top .date::before {
    content: "";
    width: 1px;
    height: 26px;
    background: #e5e5e5;
    position: absolute;
    left: 0;
    top: 2px
}

.vuta-header .header-top .vuta-container {
    display: flex;
    align-items: center
}

.vuta-header .header-top .vuta-container .list-right {
    display: flex;
    margin-left: auto
}

@media screen and (max-width:1200px) {
    .vuta-header .header-top .vuta-container .list-right {
        display: none
    }
}

.vuta-header .header-top .vuta-container .list-right ul {
    display: flex;
    align-items: center
}

.vuta-header .header-top .vuta-container .list-right ul li a {
    color: #757575;
    font-size: 14px
}

.vuta-header .header-top .vuta-container .list-right .list-hot li {
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
    color: #757575;
    line-height: 32px;
    font-size: 14px
}

.vuta-header .header-top .vuta-container .list-right .list-hot li::before {
    content: "";
    width: 1px;
    height: 26px;
    background: #e5e5e5;
    position: absolute;
    left: 0;
    top: 2px
}

.vuta-header .header-top .vuta-container .list-right .list-hot li:first-child::before {
    display: none
}

.vuta-header .header-top .vuta-container .list-right .list-action {
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
    color: #757575;
    line-height: 32px;
    font-size: 14px;
    display: flex;
    gap: 15px
}

.vuta-header .header-top .vuta-container .list-right .list-action li a {
    display: flex;
    align-items: center;
    gap: 5px
}

.vuta-header .header-top .vuta-container .list-right .list-action::before {
    content: "";
    width: 1px;
    height: 26px;
    background: #e5e5e5;
    position: absolute;
    left: 0;
    top: 2px
}

.vuta-header .header-main {
    border-bottom: 1px solid #e5e5e5;
    background: #fff
}

@media screen and (max-width:1200px) {
    .vuta-header .header-main {
        display: none
    }
}

.vuta-header .header-main .accordion {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center
}

@media screen and (max-width:1400px) {
    .vuta-header .header-main .accordion {
        white-space: nowrap;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        -webkit-box-pack: start;
        -webkit-justify-content: start;
        -ms-flex-pack: start;
        justify-content: start;
        scrollbar-width: none;
        -ms-overflow-style: none
    }
}

.vuta-header .header-main .accordion li a {
    color: #222;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    height: 40px;
    gap: 5px;
    align-items: center
}

.vuta-header .header-main .accordion li.active>a {
    color: var(--primary)
}

.vuta-header .header-main .accordion li.dropdown {
    position: relative
}

.vuta-header .header-main .accordion li.dropdown .sub-menu {
    position: absolute;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    background: #fff;
    border-top: 1px solid var(--primary);
    z-index: 2;
    left: 0;
    top: calc(100% + 20px);
    content: "";
    opacity: 0;
    min-width: 190px;
    visibility: hidden;
    transition: all ease .4s
}

.vuta-header .header-main .accordion li.dropdown .sub-menu li a {
    padding: 5px 10px;
    height: auto;
    border-bottom: 1px solid transparent
}

.vuta-header .header-main .accordion li.dropdown .sub-menu li:hover a {
    border-bottom: 1px solid var(--primary)
}

.vuta-header .header-main .accordion li.dropdown:hover .sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible
}

.vuta-header.fixed-top .header-top {
    display: none
}

@media screen and (max-width:1200px) {
    .vuta-header.fixed-top .header-top {
        display: block
    }

    .vuta-header.fixed-top .header-top .logo img {
        height: 50px
    }
}

@media screen and (max-width:1200px) {
    .vuta-header.fixed-top .header-main {
        display: none
    }
}

header .mobile-btn {
    display: none
}

@media screen and (max-width:1200px) {
    header .mobile-btn {
        display: block;
        margin-left: auto
    }
}

header .mobile-btn #mobile-btn span {
    background: var(--primary);
    margin-bottom: 5px;
    height: 2px
}

header .mobile-btn #mobile-btn span:last-child {
    margin-bottom: 0
}

#menu-mobile .mobile-logo {
    text-align: center;
    margin-bottom: 40px
}

#menu-mobile .mobile-logo img {
    height: 50px
}

#menu-mobile .list-mobile-menu ul li a {
    color: var(--primary)
}

.vuta-footer .footer-top {
    padding: 15px 0;
    background: #f5f5f5
}

.vuta-footer .footer-top .vuta-container {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px
}

.vuta-footer .footer-top ul li a {
    color: #222
}

.vuta-footer .footer-top ul li a:hover {
    color: var(--primary)
}

.vuta-footer .footer-bottom {
    background: #f5f5f5
}

.vuta-footer .footer-bottom .vuta-container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media screen and (max-width:996px) {
    .vuta-footer .footer-bottom .vuta-container {
        flex-direction: column;
        padding-bottom: 10px
    }
}

.vuta-footer .footer-bottom .vuta-container .logo img {
    height: 100px
}

.vuta-footer .list-social {
    display: flex;
    align-items: center;
    gap: 15px
}

.vuta-footer .list-social li a {
    color: var(--primary)
}

.vuta-footer .box-info {
    margin-right: auto;
    margin-left: 40px
}

@media screen and (max-width:996px) {
    .vuta-footer .list-info {
        padding-top: 10px;
        padding-bottom: 10px
    }
}

.vuta-footer .list-info li a {
    color: #456
}

.vuta-footer .list-info li a:hover {
    color: var(--primary)
}

.vuta-footer .list-info li a i {
    margin-right: 5px
}

.footer-coppyright {
    padding: 5px;
    background: var(--primary);
    color: #fff
}

.footer-coppyright p {
    margin-bottom: 0;
    text-align: center
}

.footer-coppyright a {
    font-weight: 600;
    color: #fff
}