body .ht-sitecontainer {
    background: url('/bao-cao-thong-minh/sites/help/images/bg-fullpage.webp') no-repeat top center;
    background-size: cover;
}

body .site-header {
    background: unset;
}

/*#region Header*/
.site-header .site-header__banner {
    padding: 10px 0;
}

.site-header .site-header__banner .ht-container {
    max-width: 100%;
}

.site-header .site-header__search {
    padding: 160px 0 20px;
}

.site-header__search .ht-container {
    max-width: 1210px;
}

.site-header .site-header__title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 48px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.site-header__name {
    display: inline-block;
    position: relative;
    color: #21C686;
}

.site-header__name img {
    position: absolute;
    bottom: -60%;
    left: -5%;
    width: 285px;
    max-width: 48%;
}

.nav-header ul li a {
    font-family: Inter SemiBold, Arial, sans-serif;
    font-size: 16px;
    color: #111827;
}

.hkb-site-search {
    max-width: 730px;
}

.hkb-site-search .hkb-site-search__field {
    border: 1px solid #D1D1D1;
}

@media (max-width: 1209px) {
    .site-header .site-header__title {
        font-size: 32px;
    }
}

@media (max-width: 979px) {
    .site-header .site-header__title {
        font-size: 28px;
    }

    .site-header .site-header__search {
        padding: 50px 0 20px;
    }
}

@media (max-width: 767px) {
    .site-header .site-header__title {
        font-size: 24px;
        display: block;
    }

    .site-header .site-header__search {
        padding: 30px 0 20px;
    }
}
/*#endregion*/

/*#region Homepage*/
.ht-page {
    padding: 0;
}

.home-page {
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.42857143;
}

.home-page a {
    color: inherit;
    text-decoration: none;
}

.section-p {
    padding: 50px 0;
}

.nowrap {
    white-space: nowrap;
}

.section-line {
    display: flex;
    justify-content: center;
    max-width: 100%;
}

.section-line img {
    width: 100%;
}

.default-title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 32px;
    padding-bottom: 8px;
    text-align: center;
}

.default-subtitle {
    font-size: 14px;
    text-align: center;
}

@media (max-width: 979px) {
    .section-p {
        padding: 30px 0;
    }

    .default-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .section-p {
        padding: 20px 0;
    }

    .default-title {
        font-size: 24px;
    }
}
/*#endregion*/

/*#region Categories*/
.cates-row-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cates-group {
    background-color: #fff;
    padding: 16px 24px;
    border-radius: 30px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cates-row-top .cates-group {
    margin-bottom: 20px;
}

.cg-text {
    width: 100%;
}

.cates-group__title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 18px;
    padding-bottom: 10px;
}

.cates-group__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.cates-group__links a {
    display: block;
    width: fit-content;
    font-family: Inter Medium, Arial, sans-serif;
    font-size: 14px;
    color: #2563EB;
    margin-bottom: 10px;
}

.cates-group__cta a {
    margin-top: 6px;
    width: fit-content;
    background-color: #93C5FD;
    padding: 6px 10px;
    border: 1px solid #2563EB;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Inter SemiBold, Arial, sans-serif;
}

@media (max-width: 979px) {
    .cates-row-bottom {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 767px) {
    .cates-group {
        padding: 16px;
        gap: 16px;
    }

    .cates-group__title {
        font-size: 16px;
    }

    .cates-group__links {
        grid-template-columns: repeat(1, 1fr);
    }
}
/*#endregion*/

/*#region Video*/
.video {
    background: url('/bao-cao-thong-minh/sites/help/images/homepage/bg-video.png') no-repeat top center;
    background-size: cover;
    padding: 40px 0 100px;
    margin-top: 160px;
}

.video-title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.video-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.video-item-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-item-play img {
    width: 70%;
    margin-left: 4px;
}

.video-item:hover .video-item-play {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.video-cta {
    display: flex;
    justify-content: end;
}

.video-cta a {
    font-family: Inter Bold, Arial, sans-serif;
    color: #FFF;
    margin-top: 20px;
}

@media (max-width: 979px) {
    .video {
        margin-top: 100px;
        padding: 40px 0 60px;
    }

    .video-title {
        font-size: 32px;
    }

    .video-wrap {
        display: block;
    }

    .video-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .video {
        margin-top: 60px;
        padding: 40px 0 40px;
    }

    .video-title {
        font-size: 24px;
    }

    .video-item-play {
        width: 40px;
        height: 40px;
    }
}
/*#endregion*/