:root {
    --primary-600: #389E9E;
    --primary-500: #74BBBB;
    --primary-400: #9BCFCF;
    --primary-300: #C3E2E2;
    --primary-200: #D7ECEC;
    --primary-100: #EBF5F5;
    --secondary-600: #F15A22;
    --secondary-500: #F58B64;
    --secondary-400: #F8AC90;
    --secondary-300: #FBCEBD;
    --secondary-200: #FCDED3;
    --secondary-100: #FEEFE9;
    --black-color: #2B323B;
    --dark-grey: #6B7076;
    --grey: #95989D;
    --light-grey: #D5D6D8;
    --extra-light: #EAEBEB;
    --light-bg: #F9F9F9;
    --white-600: rgba(255, 255, 255, 1);
    --white-500: rgba(255, 255, 255, 0.8);
    --white-400: rgba(255, 255, 255, 0.5);
    --white-300: rgba(255, 255, 255, 0.3);
    --white-200: rgba(255, 255, 255, 0.2);
    --white-100: rgba(255, 255, 255, 0.1);
    --bold-font: 'SVN-Nexa Bold';
    --light-font: 'SVN-Nexa Light';
    --heavy-font: 'SVN-Nexa Heavy';
}

@font-face {
    font-family: 'SVN-Nexa Bold';
    src: url('../font/SVN-Nexa\ Bold.ttf');
}

@font-face {
    font-family: 'SVN-Nexa Light';
    src: url('../font/SVN-Nexa\ Light.ttf');
}

@font-face {
    font-family: 'SVN-Nexa Heavy';
    src: url('../font/Nexa-Heavy.otf');
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--white-600);
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: var(--white-600);
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: var(--primary-600);
}

strong {
    font-family: var(--heavy-font);
}

.light-bg {
    background: var(--light-bg) !important;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

a,
a:hover {
    text-decoration: none;
}

body {
    font-size: 20px;
    font-family: var(--light-font);
    line-height: 32px;
    color: var(--black-color);
    font-weight: 400;
}
body.gray > *,body.gray > ::after,body.gray > ::before{
    filter: grayscale(1);
}
body.menu-opened {
    overflow: hidden;
}

body.menu-opened header.fixed-top {
    box-shadow: none;
}

.fw-700 {
    font-weight: 700;
    font-family: var(--bold-font);
}
.blog-detail img {
    max-width: 100%;
    height: auto;
}
.container {
    max-width: 1224px !important;
}

.icon {
    display: flex;
    width: 24px;
    height: auto;
}

.btn-1 {
    background: var(--primary-600);
    color: var(--white-600);
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 4px;
    padding: 10px 20px;
    line-height: 24px;
    opacity: 1;
    border: 1px solid var(--primary-600);
    font-family: var(--light-font);
    transition: all .3s ease-in-out;
}

.btn-icon_left .icon {
    margin-right: 10px;
}

.btn-icon_right .icon {
    margin-left: 10px;
}

.btn-radius_tl {
    border-top-left-radius: 80px;
    padding-left: 24px;
}

.btn-radius_bl {
    border-bottom-left-radius: 80px;
    padding-left: 24px;
}

.btn-radius_br {
    border-bottom-right-radius: 80px;
    padding-right: 24px;
}

.btn-bg_transparent {
    background: transparent;
    color: var(--primary-600);
}

.btn-2 {
    background: transparent;
    border: 1px solid var(--white-600);
    border-radius: 4px;
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 20px;
    color: var(--white-600);
    font-size: 16px;
    line-height: 24px;
    opacity: 1;
    font-family: var(--light-font);
    transition: all .3s ease-in-out;
}

.btn-3 {
    padding: 6px 20px;
    display: flex;
    align-items: center;
    width: fit-content;
    color: var(--white-600);
    background: var(--primary-600);
    font-size: 16px;
    border-radius: 99px;
    font-family: var(--light-font);
    opacity: 1;
    transition: all .3s ease-in-out;
}

.btn-1:hover,
.btn-2:hover,
.btn-3:hover {
    opacity: .85;
}

.btn-1:active,
.btn-2:active,
.btn-3:active {
    opacity: .75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    font-family: var(--heavy-font);
}

h1.title,
h1 {
    font-size: 56px;
    line-height: 72px;
}

h2.title,
h2 {
    font-size: 44px;
    line-height: 64px;
    margin-bottom: 64px;
}

h3.title,
h3 {
    font-size: 32px;
    line-height: 48px;
}

h4.title,
h4 {
    font-size: 20px;
    line-height: 32px;
}

a.hover-text {
    position: relative;
    display: block;
    width: fit-content;
    transition: all .3s ease-in-out;
}

a.hover-text::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    height: .063rem;
    bottom: -.125rem;
    background-color: var(--secondary-600);
    transform-origin: left;
    transform: scaleX(0);
    transition: all .3s ease-in-out;
}

a.hover-text:hover::after {
    transform: none;
}

a.hover-text:hover {
    color: var(--secondary-600);
}

a.hover-text .inner {
    overflow: hidden;
    pointer-events: none;
    display: block;
    position: relative;
}

a.hover-text .inner .hover {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(calc(100% + 1rem));
    transition: transform .3s ease-in-out;
    color: var(--secondary-600);
}

a.hover-text .inner .normal {
    display: block;
    transition: transform .3s ease-in-out;
}

a.hover-text:hover .inner .hover {
    transform: translateY(0);
}

a.hover-text:hover .inner .normal {
    transform: translateY(-100%);
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translateY(20%);
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

.fadeInBottom {
    animation-name: fadeInBottom;
}

.section {
    padding-top: 120px;
}
.section-1 #bigFrame{
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.blog-item {
    cursor: pointer;
    display: block;
}

.blog-item:hover .blog-content .title {
    color: var(--primary-600);
}

.blog-item .author-name {
    color: var(--black-color);
}

.blog-thumb {
    position: relative;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.blog-category,
.category {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 8px;
    border: 1px solid rgba(43, 50, 59, 0.5);
    color: var(--black-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    background: rgba(43, 50, 59, 0.04);
}

.blog-date {
    display: flex;
    align-items: center;
    color: var(--dark-grey);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.blog-date span.icon {
    width: 20px;
    margin-right: 5px;
}

.blog-content .title {
    color: var(--black-color);
    transition: all .3s ease-in-out;
}

.blog-content h4.title {
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-badge {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 8px 24px 8px 16px;
    background: var(--secondary-600);
    border-bottom-right-radius: 99px;
    color: var(--white-600);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--white-400);
    border-right: 1px solid var(--white-400);
}

.blog-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--dark-grey);
    font-weight: 700;
}

.blog-author {
    margin-top: 16px;
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
}

.blog-author .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 8px;
}

.blog-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a.link {
    color: var(--dark-grey);
    line-height: 28px;
    font-weight: 700;
    font-family: var(--bold-font);
    transition: all .3s ease-in-out;
}

a.link:hover {
    color: var(--primary-600);
}

.list-files h4.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(77, 77, 77, 1);
    margin-bottom: 0;
    transition: all .3s ease-in-out;
}

.list-files h4.title span:not(.icon) {
    width: 90%;
}

.list-files h4.title span.icon {
    width: 10%;
    text-align: center;
}

.list-files h4.title span.icon svg {
    width: 24px;
}

.list-files .file-item {
    display: block;
    padding: 24px 16px;
    transition: all .3s ease-in-out;
}

.list-files .file-item:hover {
    background: #f9f9f9;
    border-radius: 16px;
}

.list-files .file-item:hover h4.title,
.list-files .file-item:hover h4.title a {
    color: var(--primary-600);
}

.list-files .file-item h4.title a {
    color: rgba(77, 77, 77, 1);
    transition: all .3s ease-in-out;
}

.list-files .file-date {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
    color: var(--grey);
    font-weight: 700;
    display: block;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.nav-tabs {
    border-bottom: none;
    flex-wrap: nowrap;
    width: max-content;
    margin: 0 auto;
}

.nav-tabs .nav-link {
    margin-right: 8px;
    padding: 11px 24px;
    line-height: 28px;
    font-weight: 700;
    color: var(--black-color);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
}

.nav-tabs .nav-item:last-child .nav-link {
    margin-right: 0;
}

.nav-tabs .nav-link.active {
    border-color: var(--primary-600);
    color: var(--primary-600);
    background: var(--primary-100);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-600);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(233, 235, 238, 1);
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--black-color);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.pagination a:hover,
.pagination a.active {
    color: var(--white-600);
    background: var(--primary-600);
    border-color: var(--primary-600);
}

.pagination span .icon {
    width: 20px;
}

.pagination a.pagination-item {
    margin-right: 4px;
}

.pagination a.prev {
    margin-right: 16px;
}

.pagination a.next {
    margin-left: 12px;
}

.form-control {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--grey);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--light-grey);
    font-family: var(--bold-font);
}

select.form-control {
    padding-right: 40px;
}

.form-control:focus {
    border-color: var(--primary-600);
    box-shadow: 0 0 0 .25rem rgba(56, 158, 158, .25)
}

.search-input {
    position: relative;
}

.search .form-control {
    height: 48px;
}

.search-input .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    color: var(--dark-grey);
}

.search-result .result-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--black-color);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.search-result .result-item:hover {
    color: var(--primary-600);
}

.search-result .result-item span.icon {
    color: var(--dark-grey);
    width: 16px;
    margin-right: 8px;
}

.grid-files {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
    row-gap: 64px;
}

.grid-files .file-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    height: 500px;
    border: 1px solid var(--extra-light);
}

.grid-files .file-thumb::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background-image: linear-gradient(rgba(43, 50, 59, 0), rgba(43, 50, 59, 1));
    z-index: 1;
}

.grid-files .file-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-files .file-thumb h4.title {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: var(--white-600);
    z-index: 2;
}

.grid-files .file-thumb h4.title .icon {
    width: 56px;
}

.grid-files .file-thumb h4.title .icon img {
    width: 100%;
}

.grid-files .file-content h4.title {
    color: var(--black-color);
}

.grid-files .file-content h4.title span span {
    color: var(--grey);
}

.grid-files .file-content h4.title span.icon {
    color: var(--primary-600);
    width: 20px;
    height: 20px;
    margin-left: 1px;
    display: inline-block;
}

.grid-files h4.title {
    line-height: 24px;
}

.ad-item img {
    width: 100%;
    border-radius: 16px;
}

.ad-item {
    border-radius: 16px;
    margin-bottom: 24px;
}

.ad-item:last-child {
    margin-bottom: 0;
}

.blog-container:not(:last-child) {
    margin-bottom: 64px;
}

.blog-container h2.title {
    margin-bottom: 40px;
}

.blog-list .blog-item {
    display: grid;
    grid-template-columns: 35% 60%;
    column-gap: 24px;
    margin-bottom: 40px;
}

.blog-list .blog-item:last-child {
    margin-bottom: 0;
}

.blog-list .blog-thumb {
    margin-bottom: 0;
    border-radius: 16px;
    aspect-ratio: 3/2;
}

.blog-list .blog-desc {
    -webkit-line-clamp: 4;
}

.blog-content .desc {
    color: var(--dark-grey);
}

.breadcrumb {
    padding-top: 24px;
    margin-bottom: 40px;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    color: var(--dark-grey);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.breadcrumb a:hover {
    color: var(--primary-600);
}

.breadcrumb a .icon {
    margin-right: 4px;
    width: 16px;
}

.tin-tuc header {
    background-image: none;
}

.blog-detail {
    padding-bottom: 120px;
}

.blog-detail h2.title {
    margin-bottom: 40px;
}

.blog-detail p {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}


.blog-detail ul {
    list-style-position: inside;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 600;
}

.blog-detail ul:last-child {
    margin-bottom: 0;
}

.blog-detail .list-dot {
    margin-bottom: 40px;
}

.blog-detail figure {
    width: 100%;
    margin-bottom: 5px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-detail figure img{
    width: 100%;
    /*aspect-ratio: 16/9;*/
}

.blog-detail figure figcaption,.blog-detail table td{
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.blog-detail em{
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
}

.blog-detail img {
    width: 100%;
    margin-bottom: 40px;
    /*aspect-ratio: 16/9;
    object-fit: cover;
    */
    border-radius: 16px;
    height: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
}

.blog-grid .blog-item .blog-thumb {
    height: 181px;
}

.blog-grid .blog-item h4.title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-blog {
    padding-bottom: 120px;
}

.related-blog h2.title {
    text-align: center;
    margin-bottom: 64px;
}

.nav-tabs-wrap {
    margin-bottom: 60px;
    padding-bottom: 10px;
}

.breadcrumb .nav-tabs-wrap {
    margin-bottom: 0;
    padding-bottom: 24px;
}

.nav-tabs.style-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.nav-tabs.style-1 .nav-link {
    display: block;
    text-align: center;
    width: 100%;
    border: none;
    color: var(--dark-grey);
    margin-right: 0;
    padding: 0 32px;
}

.nav-tabs.style-1 .nav-item:not(:last-child) .nav-link {
    border-right: 1px solid rgba(43, 50, 59, 0.1);
}

.nav-tabs.style-1 .nav-link:hover {
    color: var(--black-color);
}

.nav-tabs.style-1 .nav-link.active {
    background: transparent;
}

.nav-tabs.style-1 .nav-link .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    margin-bottom: 12px;
}

.nav-tabs.style-1 .nav-link .icon svg {
    width: 100%;
    height: 100%;
}

.nav-tabs.style-1 .nav-link.active,
.nav-tabs.style-1 .nav-link.active {
    color: var(--primary-600);
}

.thu-vien .section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thu-vien .section-heading h2.title {
    margin-bottom: 0;
}

.thu-vien p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
    font-weight: 600;
}

.search-style2 {
    position: relative;
}

.search-style2 input {
    width: 390px;
    padding-left: 40px;
    color: var(--grey);
}

.search-style2 .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    width: 20px;
    color: var(--grey);
}

.thu-vien .blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.thu-vien .blog-grid .blog-item .blog-thumb {
    height: 240px;
    border-radius: 16px;
    margin-bottom: 12px;
}

.thu-vien .blog-grid .blog-item {
    margin-bottom: 32px;
}

.thu-vien .youtube-iframe {
    aspect-ratio: 16/9;
    margin-bottom: 40px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.thu-vien .youtube-iframe:last-child {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4px;
    row-gap: 4px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid .gallery-item {
    aspect-ratio: 3 / 2;
    border-radius: 4px;
    overflow: hidden;
}

.custom-checkbox {
    overflow: hidden;
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid var(--light-grey);
    border-radius: 2px;
}

.custom-checkbox.active {
    border-color: var(--primary-600);
}

.custom-checkbox input {
    position: absolute;
    left: 100%;
    opacity: 0;
    visibility: hidden;
}

.custom-checkbox.active .checked.icon {
    opacity: 1;
    visibility: visible;
}

.custom-checkbox .checked {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-600);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .language-checkbox .item .checked.icon {
    width: 100%;
    margin-right: 0;
    color: var(--white-600);
}

.mobile-menu .language-checkbox .item .checked.icon svg {
    width: 16px;
}

/* LOADING CSS */
/* .loaded .loading{
    animation-name: fadeOut;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    visibility: hidden;
} */

.loading {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white-600);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loading img {
    width: 500px;
    margin-bottom: 40px;
}

.loading-circle {
    border: 4px solid var(--light-grey);
    border-top: 4px solid var(--primary-600);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.table-dark{
    --bs-table-bg: var(--primary-600);
    --bs-table-border-color: #dee2e6;
}

.table td,
.table th{
    vertical-align: middle;
}

.table a{
    font-size: 16px;
    font-weight: 600;
}

.table a:hover{
    text-decoration: underline;
}

/* HEADER CSS */
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    background: var(--white-600);
    transition: all .3s ease-in-out;
    z-index: 999;
}

.white-header header {
    background-image: none;
    border-bottom: 1px solid var(--light-grey);
}

header .logo1,
header.fixed-top .logo1,
.white-header header .logo1 {
    display: none;
}

header.fixed-top .logo2,
.white-header header .logo2,
header .logo2 {
    display: block;
}

header.fixed-top {
    position: fixed;
    background: var(--white-600);
    padding: 10px 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

header.fixed-top .has-dropdown .nav-link,
.white-header header .has-dropdown .nav-link {
    color: var(--black-color);
}

header.fixed-top .header-wrap_right ul .search-btn,
.white-header header .header-wrap_right ul .search-btn {
    color: var(--black-color)
}

.header-logo {
    display: block;
    max-width: 150px;
}

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

.header-nav a {
    position: relative;
    color: var(--black-color);
}

.header-nav a.btn-3 {
    color: var(--white-600);
}

.header-nav {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.header-nav li {
    display: block;
    margin-right: 20px;
}

.hedear-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-wrap_left {
    display: flex;
    align-items: center;
}

.header-wrap_right {
    display: flex;
    align-items: center;
}

.header-wrap_right .btn-2 {
    margin-left: 32px;
}

.header-wrap_right ul {
    display: flex;
    align-items: center;
    margin-right: 40px;
    list-style-type: none;
}

.header-wrap_right a.logo img {
    width: 68px;
}

.header-wrap_right ul li:not(:last-child) {
    margin-right: 20px;
}

.header-wrap_right ul .lang img {
    width: 24px;
    height: 24px;
}

.header-wrap_right ul .search-btn {
    color: var(--black-color);
}

.header-wrap_right ul .search-btn {
    transition: all .3s ease-in-out;
}

.header-wrap_right ul .search-btn:hover,
.white-header header .header-wrap_right ul .search-btn:hover {
    color: var(--primary-600);
}

.has-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.has-dropdown a .icon {
    width: 16px;
    height: 16px;
    margin-left: 2px;
}

.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 16px;
    border-bottom-left-radius: 80px;
    display: grid;
    grid-template-columns: 60% 40%;
    margin-top: 4px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: all .3s ease-in-out;
}

.fixed-top .has-dropdown .dropdown {
    margin-top: 10px;
}

.has-dropdown:hover .dropdown {
    animation-name: fadeInBottom;
}

.has-dropdown .dropdown img {
    width: 100%;
}

.has-dropdown .dropdown-img {
    position: relative;
}

.has-dropdown .dropdown-content {
    position: relative;
    padding: 40px 0 40px 40px;
    display: grid;
    grid-template-columns: 50% 41%;
    column-gap: 60px;
    color: var(--black-color);
    border-bottom-left-radius: 80px;
    background: var(--white-600);
}

.has-dropdown .dropdown-content::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 20%;
    z-index: 2;
}

.has-dropdown .dropdown-content.style-1 {
    background: var(--primary-600);
}

.has-dropdown .dropdown-content.style-1::after {
    background-image: linear-gradient(to right, rgba(56, 158, 158, 1), rgba(56, 158, 158, 0.86), rgba(56, 158, 158, 0));
}

.has-dropdown .dropdown-content.style-2 {
    background: rgba(97, 145, 67, 1);
}

.has-dropdown .dropdown-content.style-2::after {
    background-image: linear-gradient(to right, rgba(97, 145, 67, 1), rgba(97, 145, 67, 0.86), rgba(97, 145, 67, 0));
}

.has-dropdown .dropdown-content.style-3 {
    background: rgba(16, 116, 188, 1);
}

.has-dropdown .dropdown-content.style-3::after {
    background-image: linear-gradient(to right, rgba(16, 116, 188, 1), rgba(16, 116, 188, 0.89), rgba(16, 116, 188, 0));
}

.has-dropdown .dropdown-content.style-4 {
    background: rgba(241, 90, 34, 1);
}

.has-dropdown .dropdown-content.style-4::after {
    background-image: linear-gradient(to right, rgba(241, 90, 34, 1), rgba(241, 90, 34, 0.89), rgba(241, 90, 34, 0));
}

.has-dropdown .dropdown-content::after {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
}

.header-nav .has-dropdown ul li {
    margin-left: 0;
    margin-bottom: 16px;
    line-height: 20px;
}

.has-dropdown .dropdown-content p {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.header-nav .has-dropdown ul li a {
    font-size: 14px;
    font-family: var(--light-font);
    color: var(--black-color);
}

.header-nav li:hover a.nav-link,
.header-nav a.nav-link:hover {
    color: var(--primary-600);
}

.has-dropdown .nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 700;
}

.has-dropdown .nav-link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: transparent;
    display: none;
    height: 100%;
}

.has-dropdown:hover .nav-link::before {
    display: block;
}

.has-dropdown a.hover-text:hover {
    color: var(--primary-600);
}

.has-dropdown a.hover-text::after {
    background: var(--primary-600);
}

header .menu-btn {
    position: relative;
    display: none;
    margin-left: 16px;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header .menu-btn span,
header .menu-btn::before,
header .menu-btn::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    border-bottom: 3px solid var(--black-color);
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

header.fixed-top .menu-btn span,
header.fixed-top .menu-btn::before,
header.fixed-top .menu-btn::after {
    border-bottom: 3px solid var(--black-color);
}

header .menu-btn::before {
    transform: translateY(-8px);
}

header .menu-btn::after {
    transform: translateY(8px);
}

header .menu-btn.active span {
    transform: scaleX(0);
}

header .menu-btn.active::before {
    transform: rotate(45deg);
    border-color: var(--white-600);
}

header .menu-btn.active::after {
    transform: rotate(-45deg);
    border-color: var(--white-600);
}

header.fixed-top .menu-btn.active::after,
header.fixed-top .menu-btn.active::before {
    border-color: var(--black-color);
}

.search-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: var(--white-600);
    padding: 38px;
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    animation-duration: 1s;
    animation-fill-mode: both;
    transition: all .3s ease-in-out;
}

header.fixed-top .search-wrap {
    margin-top: 10px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.15);
}

.search-btn.active+.search-wrap {
    animation-name: fadeInBottom;
}

.search-btn.active .active-icon,
.search-btn .unactive-icon {
    display: block;
}

.search-btn.active .unactive-icon,
.search-btn .active-icon {
    display: none;
}

.search-wrap label {
    font-weight: 700;
    line-height: 28px;
    margin-right: 24px;
    font-family: var(--heavy-font);
}

.search-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-content:first-child {
    margin-bottom: 10px;
}

.search-content .search,
.search-content .search-result {
    width: 570px;
}

.search-content .search-result{
    height: 266px;
    overflow-y: auto;
    overflow-x: hidden;
}

.search-wrap .result-item {
    margin-bottom: 10px;
}

/* MOBILE MENU CSS */
.mobile-menu {
    position: fixed;
    top: 71px;
    bottom: 0;
    right: -100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white-600);
    z-index: 990;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.6s ease-in-out;
}

.mobile-menu_top {
    padding: 20px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu .menu-nav ul {
    width: 100%;
    list-style-type: none;
}

.mobile-menu .has-dropdown .nav-link {
    font-size: 20px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: 700;
    font-family: var(--bold-font);
}

.mobile-menu .has-dropdown {
    position: relative;
    padding: 0 16px;
    width: 100%;
    margin-bottom: 8px;
    background: var(--light-bg);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all .3s ease-in-out;
}

.mobile-menu .has-dropdown.active {
    border-color: var(--primary-600);
}

.mobile-menu .has-dropdown.active a.nav-link {
    border-color: var(--extra-light);
    color: var(--primary-600);
}

.mobile-menu .has-dropdown:hover .dropdown {
    animation: none;
}

.mobile-menu .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid transparent;
}

.mobile-menu .nav-item svg path {
    stroke: var(--black-color);
}

.mobile-menu .nav-item .icon {
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.mobile-menu .nav-item .icon.active {
    transform: rotate3d(1, 0, 0, 180deg);
}

.mobile-menu .has-dropdown .dropdown {
    display: block;
    position: static;
    opacity: 1;
    visibility: visible;
    border-top: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: none;
    transition: none;
}

.mobile-menu .has-dropdown .dropdown-content::after {
    content: none;
}

.mobile-menu .has-dropdown .dropdown-content {
    padding: 0;
    display: block;
    background: transparent;
    border-radius: 0;
}

.mobile-menu .menu-nav ul .dropdown a {
    color: var(--black-color);
    text-align: left;
    font-size: 20px;
    line-height: 24px;
}

.mobile-menu .menu-nav ul .dropdown li {
    margin-bottom: 8;
}

.mobile-menu .menu-nav ul .dropdown a:hover,
.mobile-menu .menu-nav ul .dropdown a.active {
    color: var(--primary-600);
}

.mobile-menu .menu-nav ul .dropdown a {
    padding: 12px 0;
}

.mobile-menu .search {
    margin-bottom: 16px;
}

.mobile-menu .search-result {
    padding: 16px;
    display: none;
}

.mobile-menu .language {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-top: 1px solid var(--extra-light);
    background: var(--light-bg);
}

.mobile-menu .language .text {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: var(--bold-font);
}

.mobile-menu .language .text .icon {
    width: 32px;
    margin-right: 8px;
}

.mobile-menu .language .text .icon img {
    width: 100%;
}

.mobile-menu .language-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translateX(100%);
    background: var(--white-600);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.mobile-menu .language-checkbox.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu .language-checkbox .item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    font-weight: 700;
    cursor: pointer;
}

.mobile-menu .language-checkbox .item .icon {
    color: var(--grey);
    margin-right: 12px;
}

.mobile-menu .language-checkbox .item.checkbox {
    justify-content: space-between;
}

/* BANNER CSS */
.banner {
    position: relative;
    line-height: 0;
}

.banner .swiper-wrapper {
    height: auto;
}

.banner .swiper {
    position: relative;
    border-bottom-left-radius: 160px;
    z-index: 1;
}

.banner .swiper-slide_image {
    background-repeat: no-repeat;
    background-position: center 20%;
    background-size: cover;
    aspect-ratio: 18/9;
}

.banner .youtube-iframe {
    position: relative;
    height: 716px;
    width: 100%;
    overflow: hidden;
}

.banner .youtube-iframe::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
}

.banner .youtube-iframe iframe {
    width: 100%;
    height: 100%;
    transform: scale(1.7);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-600);
    z-index: 2;
}

.banner-content h1.title {
    text-align: center;
    font-weight: 850;
}

.banner-content p {
    font-size: 24px;
    line-height: 32px;
    font-family: var(--light-font);
}

.banner-content .btn-2 {
    margin: 0 auto;
    margin-top: 30px;
}

.banner .swiper-pagination {
    bottom: 151px;
}

.banner .swiper-pagination-bullet {
    position: relative;
    width: 72px;
    height: 6px;
    border-radius: 2px;
    background: var(--white-400);
    margin: 0 7px 0 0 !important;
    opacity: 1;
}

.banner .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    background: var(--white-500);
    z-index: 1;
    transition: all .5s ease-in-out;
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--white-400);
}

.banner .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
.banner .swiper-pagination-bullet:hover::before {
    left: 0;
    right: unset;
    width: 100%;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
    width: 40px;
    height: 40px;
}

.banner .swiper-button-next {
    right: 32px;
}

.banner .swiper-button-prev {
    left: 32px;
}

.banner .swiper-button-next::after,
.banner .swiper-button-prev::after {
    color: var(--white-600);
    font-size: 20px;
    font-weight: 900;
}

.banner .container {
    padding: 0;
}

.small-banner {
    overflow: hidden;
    border-bottom-left-radius: 80px;
}

.small-banner iframe {
    transform: scale(2);
}

.small-banner.no-radius {
    border-radius: 0;
}

.small-banner .background-img {
    position: relative;
    aspect-ratio: 2.88/1;
    background-position: center 55%;
    background-size: cover;
    background-repeat: no-repeat;
}

.small-banner .background-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15));
}

.small-banner .banner-content h1.title {
    margin-bottom: 14px;
}

.small-banner .banner-content {
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.small-banner .banner-content p {
    max-width: 660px;
    margin: 0 auto;
}

/* TRANG CHỦ CSS */
.section-1 {
    margin-top: -245px;
    position: relative;
    z-index: 2;
}

.section-1 .box-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
    border: 1px solid #dee2e6;
    overflow: hidden;
}
.section-1 .box-wrap .simplize-widget-chart-overview{
    height: 193px;
    overflow: auto;
}
.section-1 .box-left {
    padding: 24px 32px;
    background: var(--primary-600);
    color: var(--white-600);
}

.section-1 .box-left h2.title {
    margin-bottom: 16px;
}

.section-1 .box-right {
    background: var(--light-bg);
}

.section-1 .box-right img {
    width: 100%;
}

.section-1 .category {
    margin-bottom: 16px;
    border-color: var(--white-400);
    color: var(--white-600);
}

.section-1 .box-left h4.title {
    color: var(--white-400);
    margin-bottom: 0;
}

.section-2 .box-right {
    position: relative;
    background-image: url(../images/section1-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 32px;
    border-radius: 16px;
    aspect-ratio: 6/13;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-2 .box-right::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*background: rgba(151, 127, 92, 0.7);*/
    border-radius: 16px;
    z-index: 1;
}

.section-2 .box-right .box-content {
    z-index: 2;
    text-align: center;
    color: var(--white-600);
}

.section-2 .box-right a {
    font-size: 16px;
    color: var(--white-400);
    justify-content: center;
    transition: all .3s ease-in-out;
}

.section-2 .box-right a:hover {
    color: var(--primary-600);
}

.section-2 .box-right span.icon {
    width: 16px;
    margin-left: 5px;
}

.section-2 .box-right span:not(.icon) {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    position: absolute;
    top: 40px;
    left: 32px;
    right: 32px;
}

.section-2 .box-right h3.title {
    margin-bottom: 12px;
}

.section-2 .blog-item_large {
    display: grid;
    grid-template-columns: 45% 53%;
    column-gap: 16px;
    margin-bottom: 40px;
}

.section-2 .blog-item_large .blog-thumb img {
    height: 100%;
}

.section-2 .blog-item_large .blog-thumb {
    margin-bottom: 0;
}

.section-2 .blog-item_large h3.title {
    margin-bottom: 4px;
}

.section-2 .blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.section-2 .blog-item_large .blog-meta {
    margin-bottom: 16px;
}

.section-2 .blog-item.style-2 .blog-desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.section-2 .blog-item.style-2 h4.title {
    margin-bottom: 12px;
}

.section-2 .blog-item.style-2 .blog-category {
    padding: 0;
    border: none;
    background: transparent;
    color: var(--secondary-600);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-2 .blog-item.style-2 h4.title a{
    color: var(--black-color);
}

.section-2 .blog-item.style-2 h4.title:hover a{
    color: var(--primary-600);
}

.nha-dau-tu .section-1 {
    padding-bottom: 120px;
}

.nha-dau-tu .section-2 {
    padding-top: 0;
}
.nha-dau-tu .section-2.style-2{
    padding-top: 120px;
    padding-bottom: 120px;
}
.nha-dau-tu .section-2.style-2 .col-xl-7 {
    order: 2;
}

.nha-dau-tu .section:not(.section-1).style-2 .box-right {
    border-top-right-radius: 16px;
    border-top-left-radius: 80px;
    overflow: hidden;
    padding: 20px 16px;
    background-image: url(../images/image\ 24.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;

}

.nha-dau-tu .section:not(.section-1).style-2 .box-right .box-content {
    justify-content: end;
    align-items: start;
    text-align: left;
}

.nha-dau-tu .section:not(.section-1).style-2 .box-right .file-icon {
    margin: 0 0 12px 0;
}

.nha-dau-tu .section:not(.section-1).style-2 .box-right::after {
    background-image: linear-gradient(rgba(43, 50, 59, 0), rgba(43, 50, 59, 1));
    height: 50%;
    top: unset;
}

.nha-dau-tu .section h2.title {
    margin-bottom: 0;
}

.nha-dau-tu .section-heading {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nha-dau-tu .section:not(.section-1) .box-right::after {
    background-image: url(../images/bg-icon.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    border-radius: 0;
}

.nha-dau-tu .section:not(.section-1) .box-right {
    border-radius: 16px;
    border-top-right-radius: 80px;
    background-image: linear-gradient(rgba(57, 64, 73, 1), rgba(43, 50, 59, 1));
    padding: 40px 35px 70px 35px;
    display: block;
}

.nha-dau-tu .section:not(.section-1) .box-right .box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    z-index: 3;
}

.nha-dau-tu .section:not(.section-1) .box-right .box-content .logo {
    width: 200px;
}

.nha-dau-tu .section:not(.section-1) .box-right .box-content img {
    width: 100%;
}

.nha-dau-tu .section:not(.section-1) .box-right .file-icon {
    width: 56px;
    margin: 0 auto;
    margin-bottom: 12px;
}

.nha-dau-tu .section:not(.section-1) .box-right h3.title {
    margin-bottom: 0;
}

.nha-dau-tu .section:not(.section-1) .box-right h3.title a {
    color: var(--white-600);
    font-size: unset;
    transition: all .3s ease-in-out;
}

.nha-dau-tu .section:not(.section-1) .box-right h3.title:hover a {
    color: var(--primary-600);
}

.section-3 {
    padding-bottom: 120px;
    border-bottom-right-radius: 160px;
    border-top-left-radius: 160px;
    background: var(--primary-200);
}

.section-3 .box-content {
    padding: 0 80px;
}

.section-3 .blog-item {
    border-radius: 16px;
    border: 1px solid var(--extra-light);
    background: var(--light-bg);
    overflow: hidden;
}

.section-3 .blog-item .blog-thumb {
    border-radius: 0;
}

.section-3 .blog-item .blog-meta {
    margin-bottom: 16px;
}

.section-3 .blog-content {
    padding: 20px;
}

.section-3 .blog-content .desc {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-3 .blog-thumb {
    margin-bottom: 0;
}

.section-3 .blog-thumb img {
    height: 263px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.section-3 h2.title {
    margin: 16px 0;
}

.section-3 .box-left .blog-category {
    color: var(--primary-600);
    border-color: var(--primary-400);
}

.section-3 .box-left p {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.section-4 {
    padding-bottom: 120px;
}

.section-4 h2.title {
    text-align: right;
    margin-bottom: 0;
}

.section-4 .small-image {
    width: 267px;
    height: 178px;
    border-top-right-radius: 80px;
    overflow: hidden;
}

.section-4 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section-4 .section-heading {
    margin-bottom: 30px;
}

.section-4 .large-image {
    border-top-left-radius: 80px;
    overflow: hidden;
}

.section-4 h4.title {
    line-height: 28px;
    margin-bottom: 24px;
}

.section-4 .content{
    margin-bottom: 40px;
}

.section-4 .content p {
    line-height: 24px;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
}

.section-5 {
    padding-bottom: 120px;
    padding-top: 120px;
    background: var(--primary-600);
    border-top-right-radius: 160px;
    color: var(--white-600);
}

.section-5 .section-heading p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    color: var(--white-500);
    padding: 0 50px;
    font-weight: 600;
}

.section-5 h2.title {
    margin-bottom: 24px;
}

.section-5 .section-heading {
    margin-bottom: 64px;
}

.section-5 .section-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.section-5 img {
    width: 100%;
}

.section-5 .icon {
    width: 75px;
    margin-bottom: 24px;
}

.section-5 .section-grid h3 {
    font-size: 50px;
    line-height: 72px;
}

.section-5 .grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 0 23.5px;
}

.section-5 .grid-item:not(:last-child) {
    border-right: 1px solid var(--white-200);
}

.section-5 .grid-item span:not(.counter) {
    padding: 0 32px;
    height: 56px;
    line-height: 28px;
    font-weight: 700;
}

/* VỀ CHÚNG TÔI CSS */
.ve-chung-toi {
    position: relative;
}

.ve-chung-toi .section-1 {
    margin-top: 0;
    padding-bottom: 120px;
    padding-top: 0;
}

.ve-chung-toi .section-1 .light-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    z-index: -1;
}

.ve-chung-toi .section-1 h1.title {
    text-align: center;
    margin-bottom: 48px;
}

.ve-chung-toi .section-1 p {
    line-height: 28px;
    margin-bottom: 24px;
    font-weight: 700;
}

.ve-chung-toi .section-1 #youtube-video {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border-top-left-radius: 160px;
    margin-top: 24px;
}

.ve-chung-toi .section-2 {
    position: relative;
    background-image: url(../images/ve-chung-toi.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 2.12/1;
    border-top-right-radius: 160px;
}

.ve-chung-toi .section-2 h2.title {
    margin-bottom: 12px;
}

.ve-chung-toi .section-2 p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
}

.ve-chung-toi .section-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80%;
    border-top-right-radius: 160px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(102, 102, 102, 0));
    z-index: 1;
}

.ve-chung-toi .section-2 .section-content {
    position: relative;
    z-index: 2;
    color: var(--white-600);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ve-chung-toi .section-2 .section-content .btn-3 {
    background: transparent;
    color: var(--white-600);
    border: 1px solid var(--white-600);
    margin: 0 auto;
}

.ve-chung-toi .section-3 {
    background: transparent;
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.ve-chung-toi .section-3 .box-right {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 1px;
    column-gap: 1px;
    grid-template-areas: "img1 img1 img1 img1 img2 img2 img2"
        "img1 img1 img1 img1 img4 img4 img4"
        "img1 img1 img1 img1 img4 img4 img4"
        "img1 img1 img1 img1 img4 img4 img4"
        "img3 img3 img3 img3 img4 img4 img4";
}

.ve-chung-toi .section-3 .box-right img {
    width: 100%;
    grid-area: var(--grid-area);
    height: 100%;
    object-fit: cover;
}

.ve-chung-toi .section-3 .box-right img.img1 {
    height: 465px;
}

.ve-chung-toi .section-3 .box-left {
    position: relative;
    padding: 120px 40px 120px 100px;
    background: var(--primary-600);
    color: var(--white-600);
    border-bottom-left-radius: 160px;
    overflow: hidden;
}

.ve-chung-toi .section-3 .box-left .blog-category {
    color: var(--white-600);
}

.ve-chung-toi .section-3 .btn-3 {
    background: transparent;
    border: 1px solid var(--white-600);
}

.ve-chung-toi .section-3 .box-left::after {
    content: '';
    position: absolute;
    top: 395px;
    left: 340px;
    background-image: url(../images/bg-icon2.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    width: 523px;
    height: 523px;
}

.ve-chung-toi .section-4 .icon {
    width: 56px;
    margin: 0 auto;
    margin-bottom: 24px;
}

.ve-chung-toi .section-4 .grid-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.ve-chung-toi .section-4 .box-icon {
    padding: 0 32px;
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
}

.ve-chung-toi .section-4 .box-icon:not(:last-child) {
    border-right: 1px solid rgba(43, 50, 59, 0.1);
}

.ve-chung-toi .section-5 {
    background: transparent;
    border-radius: 0;
}

.ve-chung-toi .section-5 .grid-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 8px;
    column-gap: 8px;
    grid-template-areas: "item1 item1 item2 item2 item2"
        "item3 item3 item3 item4 item4";
}

.ve-chung-toi .section .box-item {
    grid-area: var(--grid-area);
    height: 300px;
    border-radius: 16px;
}

.ve-chung-toi .section .box-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ve-chung-toi .section .box-item_top {
    background: var(--secondary-600);
    padding: 40px;
}

.ve-chung-toi .section .box-item_bottom {
    background: var(--primary-600);
    padding: 40px;
}

.ve-chung-toi .section .box-img_top {
    border-radius: 16px;
    border-top-right-radius: 160px;
    overflow: hidden;
}

.ve-chung-toi .section .box-img_bottom {
    border-radius: 16px;
    border-bottom-left-radius: 160px;
    overflow: hidden;
}

.ve-chung-toi .section .box-item .icon {
    width: 56px;
    margin-bottom: 24px;
}

.ve-chung-toi .section .box-item .icon svg {
    width: 100%;
    height: auto;
}

.ve-chung-toi .section .box-item h2.title {
    margin-bottom: 8px;
}

.ve-chung-toi .section .box-item p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700;
}

.ve-chung-toi .section-6 {
    padding-bottom: 120px;
}

.ve-chung-toi .section-6 .section-heading {
    margin-bottom: 64px;
}

.ve-chung-toi .section-6 .grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 40px;
}

.ve-chung-toi .section-6 .section-heading p {
    font-weight: 700;
}

.ve-chung-toi .section-6 .box-thumb {
    height: 180px;
    position: relative;
    background: var(--primary-200);
    border-radius: 16px;
    margin-bottom: 16px;
}

.ve-chung-toi .section-6 .box-thumb img {
    width: 150px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ve-chung-toi .section-6 span.title {
    display: block;
    font-size: 20px;
    line-height: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ve-chung-toi .section-6 .box-item {
    color: var(--black-color);
    font-weight: 700;
    height: auto;
    transition: all .3s ease-in-out;
}

.ve-chung-toi .section-6 .box-item:hover {
    opacity: .85;
}

.ve-chung-toi .section-6 .box-item:active {
    opacity: .75;
}

.ve-chung-toi .section-7 {
    padding-bottom: 120px;
}

.ve-chung-toi .section-7 h2.title {
    margin-bottom: 64px;
}

.ve-chung-toi .section-7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 80px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.ve-chung-toi .section-7 .grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    margin-bottom: 80px;
}

.ve-chung-toi .section-7 .grid-box p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px;
    font-weight: 800;
}

.ve-chung-toi .section-7 .grid-box h3.title {
    margin-bottom: 16px;
}

.ve-chung-toi .section-7 .grid-box:nth-child(even) .box-left {
    order: 2;
}

.ve-chung-toi .section-7 .grid-box:nth-child(even) img {
    border-top-left-radius: 16px;
    border-top-right-radius: 80px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.ve-chung-toi .section-7 .grid-box:last-child img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 16px;
}

.ve-chung-toi .section-7 .grid-box:last-child {
    margin-bottom: 0;
}

/* SƠ ĐỒ TỔ CHỨC CSS */
.diagram-wrap {
    position: relative;
    overflow: auto;
    padding-bottom: 10px;
}

.diagram-wrap .diagram {
    width: 1200px;
    position: relative;
    z-index: 2;
}

.diagram-wrap .diagram ol {
    list-style-type: none;
}

.diagram-item {
    position: relative;
    width: 240px;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    border-radius: 16px;
    font-family: var(--bold-font);
    margin: 0 auto;
}

.diagram-item.style-1 {
    background: var(--primary-600);
    color: var(--white-600);
}

.diagram-item.style-2 {
    background: var(--secondary-600);
    color: var(--white-600);
}

.diagram-item.style-3 {
    background: var(--black-color);
    color: var(--white-600);
}

.diagram-item.style-4 {
    font-size: 12px;
    background: rgba(234, 235, 235, 1);
    color: var(--black-color);
    transition: all .3s ease-in-out;
}

.diagram-item.style-4:hover {
    background: rgba(214, 215, 215, 1);
}

.diagram-item::after {
    content: '';
    height: 40px;
    width: 2px;
    background: rgba(213, 214, 216, 1);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.diagram .level-2 {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.diagram .level-2 li:first-child .diagram-item:not(:last-child) {
    margin-bottom: 35px;
}

.diagram .level-2 li:first-child {
    padding-right: 30px;
    margin-top: -50px;
    position: relative;
}

.diagram .level-2 li:first-child::after {
    content: '';
    width: 2px;
    background: rgba(213, 214, 216, 1);
    position: absolute;
    right: 0;
    top: 32px;
    bottom: 32px;
}

.diagram .level-2 li:nth-child(2) {
    padding-left: 30px;
}

.diagram .level-2 li:nth-child(2) .diagram-item::after {
    top: 50%;
    right: 100%;
    left: unset;
    transform: translateY(-50%);
    height: 2px;
    width: 31px;
}

.diagram .level-2 li:last-child {
    padding-left: 60px;
}

.diagram .level-2 li:first-child .diagram-item::after {
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    left: 100%;
    width: 30px;
}

.diagram .level-2 li:last-child .diagram-item::after {
    top: 50%;
    right: 100%;
    left: unset;
    transform: translateY(-50%);
    height: 2px;
    width: 60px;
}

.diagram .level-3 .diagram-item::after {
    bottom: 100%;
    top: unset;
    height: 50px;
}

.diagram .level-3 .diagram-item::before {
    content: '';
    width: 2px;
    height: 40px;
    background: rgba(213, 214, 216, 1);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.diagram .level-4 {
    position: relative;
    padding-top: 40px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.diagram .level-4 .diagram-item::after {
    bottom: 100%;
    top: unset;
}

.diagram .level-4::after {
    content: '';
    height: 2px;
    background: rgba(213, 214, 216, 1);
    position: absolute;
    left: 275px;
    right: 144px;
    top: 0;
}

.diagram .level-5 .diagram-item::after {
    content: none;
}

.diagram .level-4 li:first-child .level-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 23px;
}

.diagram .level-4 li:last-child .level-5 .diagram-item span {
    right: 90%;
    left: unset;
}

.diagram .level-5 .diagram-item {
    position: relative;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.diagram .level-5 {
    padding: 69px 22px 22px 22px;
    border: 2px solid rgba(213, 214, 216, 1);
    margin-top: -35px;
}

.diagram .level-5 .diagram-item span {
    position: absolute;
    width: 300px;
    background: var(--white-600);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    left: 90%;
    top: 50%;
    display: none;
    transition: all .3s ease-in-out;
    z-index: 3;
}

.diagram .level-5 .diagram-item:hover span {
    display: block;
}

.so-do .section-1 {
    margin-top: unset;
}

.profile-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    column-gap: 8px;
}

.profile img {
    width: 100%;
    height: auto;
}

.profile.style-2 img {
    height: 265px;
}

.profile {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 75px;
}

.profile-info {
    position: relative;
    background: var(--primary-600);
    text-align: center;
    padding: 24px;
}

.profile.style-2 .profile-info {
    padding: 12px;
}

.profile-info::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 92px;
    background-image: linear-gradient(rgba(56, 158, 158, 0), rgba(56, 158, 158, 0.9) 70%, rgba(56, 158, 158, 1));
}

.profile.style-2 .profile-info p {
    margin: 0;
}

.profile-info span {
    font-size: 16px;
    line-height: 24px;
    color: var(--white-500);
    font-weight: 700;
}

.profile.style-2 .profile-info span {
    font-size: 14px;
    line-height: 20px;
}

.profile-info p {
    color: var(--white-600);
    line-height: 28px;
    margin: 4px 0;
    font-weight: 700;
    font-size: 17px;
}

.profile.style-2 .profile-info::before {
    content: none;
}

.so-do .section-3 {
    border-radius: 0;
    background: transparent;
}

.so-do .section-3 .grid-box {
    display: grid;
    grid-template-columns: 38% 20% 20% 20%;
    column-gap: 8px;
}

.so-do .section-3 .profile {
    margin-bottom: 0;
}

.so-do .section-3 .box-left {
    background: var(--primary-600);
    color: var(--white-600);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    border-radius: 16px;
    border-top-left-radius: 80px;
}

.so-do .section-3 .box-left h2.title {
    margin-bottom: 8px;
    margin-top: 0;
}

.so-do .section-4 h2.title {
    margin-bottom: 64px;
}

.so-do .section-3 .box-left p {
    margin-bottom: 0;
}

/* TUYỂN DỤNG CSS */
.recruit-heading {
    display: grid;
    grid-template-columns: 50% 30% 20%;
    border-bottom: 1px solid var(--light-grey);
}

.recruit-heading span {
    font-family: var(--bold-font);
    line-height: 28px;
    display: inline-block;
    padding: 10px 16px;
}

.recruit-item {
    display: grid;
    grid-template-columns: 50% 30% 20%;
    border-bottom: 1px solid var(--light-grey);
}

.recruit-item:last-child {
    border-bottom: none;
}

.recruit-item h3.title,
.recruit-item p {
    margin-bottom: 0;
}

.recruit-item p {
    line-height: 24px;
    font-weight: 600;
    color: var(--dark-grey);
}

.recruit-position,
.recruit-location,
.recruit-btn {
    padding: 24px 40px 24px 16px;
    vertical-align: middle;
}

.recruit-location,
.recruit-btn {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.recruit-location {
    color: var(--dark-grey);
}

.recruit-btn .btn-3 {
    background: var(--secondary-600);
}

.tuyen-dung .grid-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 90px;
}

.tuyen-dung .grid-box {
    display: grid;
    grid-template-columns: 60% 40%;
}

.tuyen-dung .grid-box h2.title {
    margin-bottom: 32px;
}

.tuyen-dung .grid-box .box-left {
    padding-left: 100px;
    padding-right: 40px;
}

.tuyen-dung .grid-box .box-left p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.list-dot {
    list-style-type: none;
}

.list-dot li {
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.list-dot li::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--black-color);
}

.list-dot li:last-child {
    margin-bottom: 0;
}

/* LIÊN HỆ CSS */
.lien-he .section h2.title {
    margin-bottom: 16px;
}

.lien-he .contact-link span {
    display: block;
    margin-bottom: 4px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.lien-he .contact-link span.active,
.lien-he .contact-link span:hover {
    border-color: rgba(56, 158, 158, 0.7);
    color: var(--primary-600);
    background: var(--primary-100);
}

.lien-he .map {
    height: 500px;
}

.lien-he .map iframe {
    height: 100%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.lien-he .map-bottom {
    position: relative;
    background: var(--black-color);
    color: var(--white-600);
    padding: 16px 24px 16px 24px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 90px;
    overflow: hidden;
}

.lien-he .map-bottom::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 190px;
    top: 40%;
    left: 80%;
    background-image: url(../images/bg-icon2.png);
    background-size: contain;
    background-repeat: no-repeat;
}

ul.contact-info {
    list-style-type: none;
}

.lien-he .map-bottom p {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.lien-he .map-bottom .contact-info li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: var(--white-600);
    margin-bottom: 4px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.lien-he .map-bottom .contact-info li a:hover {
    color: var(--primary-600);
}

.lien-he .map-bottom .contact-info li a .icon {
    width: 18px;
    height: 18px;
    color: var(--white-400);
}

.lien-he .map-bottom .contact-info li a .icon svg {
    width: 100%;
    height: auto;
}

.lien-he .grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.lien-he .grid-box .box-right {
    background: var(--primary-600);
    padding: 120px 80px;
}

.lien-he .grid-box .box-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 90px;
}

.lien-he .grid-box .box-right .icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.lien-he .grid-box .box-right .icon img {
    width: 100%;
    height: auto;
}

.lien-he .grid-box .box-right h2.title {
    margin-bottom: 8px;
    color: var(--white-600);
}

.lien-he .grid-box .box-right .form-group {
    margin-bottom: 8px;
    position: relative;
}

.lien-he .grid-box .box-right .form-control {
    border-radius: 16px;
    border-color: var(--white-300);
    color: var(--white-400);
    background: #4CA8A8;
    font-weight: 400;
    padding: 12px 16px 12px 52px;
}

.lien-he .grid-box .box-right .form-control:focus {
    border-color: var(--white-600);
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
}

.lien-he .grid-box .box-right .form-control::placeholder {
    color: var(--white-400);
}

.lien-he .grid-box .box-right form .icon {
    width: 24px;
    height: auto;
    margin-bottom: 0;
}

.lien-he .grid-box .box-right .form-group .icon {
    position: absolute;
    top: 14px;
    left: 16px;
    color: var(--white-600);
}

.lien-he .grid-box .box-right form .btn-3 {
    background: var(--white-600);
    color: var(--primary-600);
    font-weight: 700;
    border-radius: 16px;
    margin-top: 24px;
    line-height: 28px;
    padding: 12px 16px;
    font-family: var(--bold-font);
}

/* CHIẾN LƯỢC PHÁT TRIỂN CSS */
.chien-luoc .section-1 {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--primary-600);
}

.chien-luoc .grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.chien-luoc .section-1 .box-item {
    text-align: center;
    color: var(--white-600);
    padding: 0 32px;
    height: auto;
    border-radius: 0;
}

.chien-luoc .section-1 .box-item:not(:last-child) {
    border-right: 1px solid var(--white-200);
}

.chien-luoc .section.section-1 p {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
}

.chien-luoc .section .box-item .icon {
    margin: 0 auto;
    margin-bottom: 12px;
}

.chien-luoc .section .box-item h3.title {
    margin-bottom: 12px;
    padding-bottom: 12px;
    position: relative;
}

.chien-luoc .section .box-item h3.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 145px;
    transform: translateX(-50%);
    height: 2px;
    border-radius: 2px;
    background: var(--white-100);
}

.chien-luoc .section-2 {
    background-image: unset;
    aspect-ratio: unset;
    border-radius: 0;
}

.chien-luoc .section-2::after {
    content: none;
}

.chien-luoc .section-2 p {
    font-weight: 700;
}

.chien-luoc .section-2 p:last-child {
    margin-bottom: 0;
}

.chien-luoc .section-2 h2.title {
    margin-bottom: 24px;
}

.chien-luoc .section-3 {
    display: block;
    background: rgba(97, 145, 67, 0.1);
}

.chien-luoc .section-3 h3.title {
    color: var(--white-600);
    background: rgba(97, 145, 67, 1);
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 64px;
    width: fit-content;
}

.chien-luoc .section-3 .grid-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    margin-bottom: 64px;
}

.chien-luoc .section-3 .grid-item:last-child {
    margin-bottom: 0;
}

.chien-luoc .section-3 .grid-item img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 16px;
    border-top-left-radius: 80px;
}

.chien-luoc .section-3 .grid-item h4.title {
    margin-bottom: 16px;
    color: rgba(97, 145, 67, 1);
}

.chien-luoc .section-3 .grid-item p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.chien-luoc .section-3 .grid-item:nth-child(3) .item-img {
    order: 2;
}

.chien-luoc .section-3 .grid-item:nth-child(3) .item-img img {
    border-top-left-radius: 16px;
    border-top-right-radius: 80px;
}

.chien-luoc .section-3 .grid-item:last-child img {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 80px;
}

.chien-luoc .section-4 h3.title {
    color: var(--white-600);
    background: rgba(16, 116, 188, 1);
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 64px;
    width: fit-content;
}

.chien-luoc .section-4 .grid-box {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
}

.chien-luoc .section-4 .box-img img {
    height: 300px;
    border-radius: 16px;
    border-bottom-left-radius: 80px;
}

.chien-luoc .section-4 .box-item {
    background: rgba(16, 116, 188, 0.1);
    padding: 20px;
    border-radius: 16px;
}

.chien-luoc .section-4 .box-item h4.title {
    color: rgba(16, 116, 188, 1);
    margin-bottom: 16px;
}

/* LỊCH SỬ CSS */
.timeline {
    position: relative;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: var(--extra-light);
}

.timeline .grid-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
}

.timeline .grid-item:nth-child(even) .timeline-item {
    order: 2;
    padding-left: 40px;
}

.timeline .grid-item:nth-child(odd) .timeline-item {
    text-align: right;
    padding-right: 40px;
}

.timeline .grid-item:nth-child(odd) .timeline-item .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-item {
    position: relative;
}

.timeline-icon {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-bg);
    z-index: 1;
}

.timeline-icon span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--light-grey);
}

.timeline .grid-item:nth-child(even) .timeline-icon {
    right: -16px;
}

.timeline .grid-item:nth-child(odd) .timeline-icon {
    left: -16px;
}

.timeline-item h3.title {
    margin-bottom: 4px;
    color: var(--secondary-400);
}

.timeline-item a.link {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-600);
    font-family: var(--light-font);
    font-weight: 700;
}

.timeline-item a.link .icon {
    width: 14px;
    margin-left: 4px;
}

.timeline-item p,
.timeline-item ul {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 20px;
    font-family: var(--bold-font);
}

.timeline-item ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}

.timeline-content {
    padding: 16px;
    border-radius: 4px;
    background: var(--light-bg);
    border: 1px solid var(--extra-light);
    width: fit-content;
}

/* PHÁT TRIỂN BỀN VỮNG CSS */
.blog-filter {
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
}

.blog-filter .form-group {
    position: relative;
}

.blog-filter .filter-item label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--bold-font);
}

.blog-filter .form-group .icon {
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
}

.phat-trien.ve-chung-toi .background {
    background: #f9f9f9;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 428px;
    z-index: -1;
}

.ve-chung-toi .background {
    background: #f9f9f9;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 536px;
    z-index: -1;
}

.phat-trien .section-2::after {
    content: none;
}

.phat-trien .section-2 {
    background-image: unset;
    padding-top: 0;
    border-radius: 0;
    aspect-ratio: unset;
}

.phat-trien .section-2 .grid-box {
    display: grid;
    grid-template-columns: 59% 40%;
    column-gap: 8px;
}

.phat-trien .section-2 .box-right {
    background-image: unset;
    display: block;
    padding: 40px;
    background: var(--secondary-600);
    color: var(--white-600);
    border-bottom-right-radius: 160px;
    aspect-ratio: unset;
}

.phat-trien .section-2 .box-right::after {
    content: none;
}

.phat-trien .section-2 .box-left img {
    width: 100%;
    height: 352px;
    border-radius: 16px;
    border-top-left-radius: 160px;
    object-fit: cover;
}

.phat-trien .section-2 .box-right img {
    width: 100%;
    height: auto;
}

.phat-trien .section-2 .box-right .icon {
    width: 56px;
    margin-left: 0;
    margin-bottom: 8px;
}

.phat-trien .section-2 .box-right h2.title {
    margin-bottom: 8px;
}

.phat-trien .section-2 .box-right p {
    font-weight: 700;
}

.phat-trien .section-2 .box-right .btn-3 {
    background: var(--white-600);
    color: var(--secondary-600);
}

.phat-trien .section-3 {
    display: block;
    text-align: center;
    background-color: rgba(97, 145, 67, 0.2);
    background-image: url(../images/bg-icon3.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.phat-trien .section-3 h2.title {
    margin-top: 0;
    margin-bottom: 24px;
}

.phat-trien .section-3 p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700;
}

.phat-trien .section-4 h2.title {
    margin-bottom: 64px;
}

.phat-trien .section-4 .grid-content {
    display: grid;
    grid-template-columns: 55% 40%;
    column-gap: 40px;
}

.phat-trien .section-4 .icon {
    width: 20px;
    margin-bottom: 0;
    margin-right: 3px;
}

.phat-trien .section-4 .blog-item h4.title {
    margin-bottom: 4px;
}

.phat-trien .section-4 .blog-list .blog-item h4.title {
    -webkit-line-clamp: 3;
}

.phat-trien .section-4 .blog-list .blog-desc {
    -webkit-line-clamp: 2;
}

.phat-trien .section-4 .blog-list .blog-thumb {
    width: 100%;
    height: 100%;
}

.phat-trien .section-4 .blog-list .blog-item {
    margin-bottom: 24px;
}

.phat-trien .section-4 .blog-list .blog-meta {
    margin-bottom: 8px;
}

.phat-trien .section-4 .btn-3 .icon {
    margin-right: 0;
    margin-left: 8px;
}

.phat-trien .section-4 .btn-3 {
    margin: 0 auto;
    margin-top: 32px;
    border: 1px solid var(--primary-600);
    background: var(--white-600);
    color: var(--primary-600);
}

.phat-trien .section-5 {
    background-image: url(../images/0319bbeda9166af74b636378ce46355f.jfif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-right-radius: 160px;
}

.phat-trien .section-5 .section-content {
    padding: 40px;
    background: var(--primary-600);
    color: var(--white-600);
    border-radius: 16px;
}

.phat-trien .section-5 h2.title {
    margin-bottom: 8px;
}

.phat-trien .section-5 p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.phat-trien .section-5 .btn-3 {
    background: var(--white-600);
    color: var(--primary-600);
}

/* CHO THUÊ VĂN PHÒNG CSS */
.thue-van-phong .section-1 .box-right {
    padding: 24px;
    background: rgba(249, 249, 249, 1);
}

.thue-van-phong .section-1 .box-right .box-content {
    font-weight: 700;
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
    height: 100%;
}

.thue-van-phong .section-1 .box-right .box-content p {
    margin-bottom: 0;
    color: var(--grey);
    font-family: var(--bold-font);
    padding: 20px 0;
    border-bottom: 1px solid var(--extra-light);
}

.thue-van-phong .section-1 .box-right .box-content p:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.thue-van-phong .section-1 .box-right .box-content p:first-child {
    padding-top: 0;
}

.thue-van-phong .section-1 .box-right .box-content p strong {
    color: var(--black-color);
}

.thue-van-phong .section-2 {
    padding-top: 0;
}

.thue-van-phong .section-2 .box-right::after {
    content: none;
}

.thue-van-phong .section-2 .grid-box .box-right {
    background: transparent;
    padding: 0;
    aspect-ratio: unset;
}

.thue-van-phong .section-2 .grid-box {
    column-gap: 32px;
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.thue-van-phong .section-2 .grid-box img,
.thue-van-phong .section-2 .grid-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.thue-van-phong .section-2 .grid-box p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.thue-van-phong .section-2 .grid-box ul li {
    margin-bottom: 4px;
}

.thue-van-phong .section-2 .grid-box ul {
    margin-bottom: 24px;
}

.thue-van-phong .section-2 h2.title {
    margin-bottom: 24px;
}

.thue-van-phong .section-2 .grid-box:nth-child(2) .box-left {
    order: 2;
}

.thue-van-phong .section-2 .grid-box:last-child {
    grid-template-columns: 100%;
    row-gap: 64px;
    margin-bottom: 0;
}

.thue-van-phong .section-2 .grid-box:last-child img {
    border-bottom-right-radius: 160px;
    height: 535px;
}

.thue-van-phong .section-3 {
    background: transparent;
    border-radius: 0;
}

.thue-van-phong .section-3 .grid-item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 40px;
}

.thue-van-phong .section-3 .grid-item a {
    text-align: center;
}

.thue-van-phong .section-3 .grid-item img {
    width: 200px;
}

.thue-van-phong .lien-he .grid-box .box-left img {
    border-radius: 0;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.thue-van-phong .lien-he .grid-box .box-right {
    border-top-right-radius: 160px;
}

/* SẢN PHẨM CSS */
.san-pham .html5-video-player .video-stream {
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
}

.san-pham #youtube-video {
    aspect-ratio: 2.88 / 1;
    height: 100%;
    width: 100%;
}

.san-pham .small-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
}

.ytp-chrome-top,
.ytp-gradient-top {
    display: none !important;
}

.san-pham .section-1 {
    margin-top: 0;
}

.san-pham .nav-tabs-wrap {
    margin-bottom: 30px;
    margin-top: 40px;
}

.san-pham .nav-tabs.style-1 .nav-link.active,
.san-pham .nav-tabs.style-1 .nav-link.active {
    color: rgba(97, 145, 67, 1);
}

.san-pham.style-2 .nav-tabs.style-1 .nav-link.active,
.san-pham.style-2 .nav-tabs.style-1 .nav-link.active {
    color: rgba(16, 116, 188, 1);
}

.san-pham .section-2 {
    padding-top: 64px;
}

.san-pham .section-2 .nav-tabs {
    display: block;
    width: 100%;
}

.san-pham .section-2 .nav-tabs .nav-link {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 20px;
    font-size: 16px;
    line-height: 24px;
    border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.san-pham .section-2 .nav-tabs .nav-link.active {
    border-color: rgba(97, 145, 67, 1);
    color: rgba(97, 145, 67, 1);
    background: rgba(97, 145, 67, 0.04);
}

.san-pham .section-2 .nav-tabs .nav-link:hover {
    color: rgba(97, 145, 67, 1);
    border-color: rgba(97, 145, 67, 1);
}

.san-pham .section-2 h3.title {
    margin-bottom: 24px;
    color: rgba(97, 145, 67, 1);
}

.san-pham.style-2 .section-2 .nav-tabs .nav-link.active {
    border-color: rgba(16, 116, 188, 1);
    color: rgba(16, 116, 188, 1);
    background: rgba(16, 116, 188, 0.04);
}

.san-pham.style-2 .section-2 .nav-tabs .nav-link:hover {
    color: rgba(16, 116, 188, 1);
    border-color: rgba(16, 116, 188, 1);
}

.san-pham.style-2 .section-2 h3.title {
    color: rgba(16, 116, 188, 1);
}

.san-pham .section-2 h3.title {
    margin-bottom: 24px;
    color: rgba(97, 145, 67, 1);
}

.san-pham .section-2 p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}

.san-pham .product-detail .section-2 p{
    margin-bottom: 0;
}

.san-pham .section-2 .form-group {
    margin-bottom: 40px;
}

.san-pham .section-2 .form-group .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
}

.san-pham .section-2 .section-content:last-child {
    margin-bottom: 0;
}

.san-pham .section-2 h4.title {
    margin-bottom: 12px;
}

.san-pham .section-2 .product-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 24px;
}

.san-pham .section-2 .section-content {
    margin-bottom: 24px;
}

.product-detail .product-images img {
    width: 346px;
    height: auto;
    margin-bottom: 24px;
}

.product-detail .swiper-button-next {
    right: 0;
}

.product-detail .swiper-button-prev {
    left: 0;
}

.product-detail .product-images {
    background: var(--light-bg);
    padding: 16px 12px 9px 12px;
    border-radius: 16px;
    border: 1px solid var(--extra-light);
}

.product-detail .product-images .swiper-slide {
    text-align: center;
}

.product-detail .product-images .swiper-pagination {
    bottom: 0;
}

.product-detail .product-images .swiper-pagination-bullet-active {
    background: var(--black-color);
}

.product-detail .product-images .swiper-button-next:after,
.product-detail .product-images .swiper-button-prev:after {
    font-size: 20px;
    color: var(--grey);
    font-weight: 700;
}

.product-detail .product-images .swiper-button-next:hover:after,
.product-detail .product-images .swiper-button-prev:hover:after {
    color: var(--primary-600);
}

.product-detail .section-1 h2.title {
    margin-bottom: 32px;
    color: rgba(97, 145, 67, 1);
}
.product-detail .section-1 h2.title.style-2{
    color: rgba(16, 116, 188, 1);
}
.product-detail p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.product-detail h4.title {
    margin-bottom: 16px;
}

.product-detail .section-1 .btn-3 {
    background: rgba(97, 145, 67, 1);
    border-radius: 8px;
}

.product-detail .section-2 .section-content {
    margin-top: 40px;
}

.product-detail .section-2 h3.title,
.product-detail .section-2 h3 {
    margin-bottom: 24px;
    color: var(--dark-grey);
}

.product-detail .section-2 #youtube-video {
    aspect-ratio: 18/9;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.product-detail span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.product-detail .section-2 ul li {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
    list-style-position: inside;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
}

.product-item {
    background: var(--light-bg);
    text-align: center;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--extra-light);
}

.product-thumb img {
    width: 160px;
    margin-bottom: 12px;
}

.product-content h4.title {
    margin-bottom: 4px;
}

.product-content h4.title a {
    color: var(--black-color);
    transition: all .3s ease-in-out;
}

.product-content h4.title a:hover {
    color: var(--primary-600);
}

.product-content .product-desc {
    font-size: 14px !important;
    line-height: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    color: var(--grey);
}

/* TRA CỨU CSS */
.tra-cuu {
    margin-top: 64px;
}

.tra-cuu .section-content {
    margin-bottom: 12px;
}

.tra-cuu .box-right {
    padding: 20px 24px;
    background: var(--white-600);
    border: 1px solid var(--extra-light);
    border-radius: 16px;
}

.tra-cuu .box-left {
    padding: 20px 16px;
    background: var(--white-600);
    border: 1px solid var(--extra-light);
    border-radius: 16px;
}

.tra-cuu .box-right p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.tra-cuu .nav-tabs .nav-link {
    position: relative;
    padding: 5px 12px;
    font-size: 16px;
    line-height: 20px;
    margin-right: 4px;
}

.tra-cuu .nav-tabs .nav-item:not(:last-child) .nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    height: 16px;
    width: 2px;
    background: var(--extra-light);
}

.tra-cuu .nav-tabs .nav-item:not(:last-child) {
    margin-right: 4px;
}

.tra-cuu .nav-tabs-wrap {
    margin-bottom: 22px;
}

.tra-cuu .nav-tabs {
    margin: 0;
}

.tra-cuu .box-left h4.title {
    margin-bottom: 16px;
}

.tra-cuu .box-left .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.tra-cuu .box-left .form-group .form-control {
    max-width: 300px;
    margin: 0 16px;
}

.tra-cuu .box-left .form-group label {
    color: var(--grey);
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.tra-cuu .box-left .form-group label span {
    color: red;
}

.tra-cuu .box-left .form-group .btn-3 {
    border-radius: 8px;
    line-height: 24px;
    height: 49px;
}

.tra-cuu .list-item .item {
    padding: 16px 0;
    border-top: 1px solid var(--extra-light);
}

.tra-cuu .list-item .item-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
}

.tra-cuu .list-item .item-code {
    padding: 4px 12px;
    border-radius: 8px;
    background: rgba(43, 50, 59, 0.04);
    color: var(--black-color);
    border: 1px solid rgba(43, 50, 59, 0.5);
    font-weight: 700;
    margin-right: 12px;
}

.tra-cuu .list-item .item-date {
    color: var(--dark-grey);
    font-weight: 700;
}

.tra-cuu .list-item .item-title {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-family: var(--bold-font);
}

.tra-cuu .list-item .item-title a.link {
    color: var(--primary-600);
}

.tra-cuu h2.title {
    margin-bottom: 24px;
}

.tra-cuu .login .form-group label {
    width: 100px;
}

.tra-cuu .login .form-group .form-control {
    margin: 0;
}

/* TÁC GIẢ CSS */
.tac-gia .section-1{
    padding: 40px 0;
}

.tac-gia .author-profile{
    display: flex;
    flex-wrap: wrap;
}

.tac-gia .author-avatar img{
    width: 160px;
    border-radius: 16px;
}

.tac-gia .author-info{
    margin-left: 10px;
}

.tac-gia .author-info p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.tac-gia .author-social{
    list-style-type: none;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.tac-gia .author-social .btn-3{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.tac-gia .author-social .btn-3 svg{
    width: 20px;
    height: 20px;
}

.tac-gia .author-desc{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 0;
}

.tac-gia .author-sidebar .author-avatar img{
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
}

.tac-gia .author-sidebar .author-profile:not(:last-child){
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--extra-light);
}

.tac-gia .author-sidebar .author-profile {
    color: var(--black-color);
}

.tac-gia .author-sidebar .author-profile:hover h4{
    color: var(--primary-600)
}

/* FOOTER CSS */
footer {
    background: rgba(229, 229, 229, 1);
}

.footer-top {
    background: var(--black-color);
    padding: 14px 0;
}

.footer-top .top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top .social {
    display: flex;
    align-items: center;
}

.footer-top .social svg path {
    transition: all .3s ease-in-out;
}

.footer-top .social a:hover svg path {
    fill: var(--primary-600);
}

.footer-top .contact-info {
    display: flex;
    align-items: center;
}

.footer-top .social .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-top li:not(:last-child) {
    margin-right: 24px;
}

.footer-top .contact-info a,
.footer-top .contact-info div {
    display: flex;
    align-items: center;
    color: var(--white-600);
    line-height: 20px;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.footer-top .contact-info a:hover {
    color: var(--primary-600);
}

.footer-top .contact-info .icon svg path {
    stroke: var(--white-400);
}

.footer-top .contact-info .icon {
    margin-right: 4px;
    width: 20px;
}

.footer-body_top {
    padding: 64px 0 40px 0;
}

footer .logo {
    margin-bottom: 16px;
    display: block;
}
footer .logo img{
    width: 100%;
    height: auto;
}
.footer-body_top span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: rgba(43, 50, 59, 0.7);
    margin-bottom: 4px;
    font-weight: 700;
}

.footer-body_top h4.title {
    margin-bottom: 16px;
}

.footer-body_top p {
    color: rgba(43, 50, 59, 0.7);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.bo-con-thuong {
    width: 126px;
}

.bo-con-thuong img {
    width: 100%;
}

footer .widget-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
}

footer ul {
    list-style-type: none;
}

footer .widget-list a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: var(--black-color);
    margin-bottom: 12px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

footer .widget-list a:hover {
    color: var(--primary-600);
}

.map iframe {
    width: 100%;
    height: 126px;
    border-radius: 16px;
}

footer .btn-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
    column-gap: 4px;
}

footer .btn-list a {
    display: flex;
    align-items: center;
    background: var(--black-color);
    border: 1px solid rgba(56, 158, 158, 0.1);
    padding: 12px;
    border-radius: 16px;
    font-weight: 600;
}

footer .btn-list a span {
    color: var(--white-600);
    margin-bottom: 0;
    font-size: 12px;
    line-height: normal;
}

footer .btn-list a .icon {
    width: 20px;
    margin-right: 4px;
}

.footer-body_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid rgba(43, 50, 59, 0.1);
}

.footer-body_bottom ul {
    display: flex;
    align-items: center;
}

.footer-body_bottom ul li:not(:last-child) {
    margin-right: 24px;
}

.footer-body_bottom a {
    color: var(--black-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.footer-body_bottom a:hover {
    color: var(--primary-600);
}

.footer-body_bottom span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

/* COOKIE CSS */
.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 0;
    background: var(--white-600);
    box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, 0.1);
    z-index: 980;
}

.cookie-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie span {
    line-height: 28px;
    font-weight: 700;
}

.cookie-btns {
    display: flex;
    align-items: center;
}

.cookie-btns a {
    padding: 6px 24px;
    border-radius: 8px;
    line-height: 28px;
    font-weight: 700;
    opacity: 1;
    transition: all .3s ease-in-out;
}

.cookie-btns a:hover {
    opacity: .85;
}

.cookie-btns a:active {
    opacity: .75;
}

.cookie-btns a:not(:last-child) {
    margin-right: 10px;
}

.cookie-btns a.decline {
    border: 1px solid var(--dark-grey);
    color: var(--dark-grey);
}

.cookie-btns a.accept {
    color: var(--white-600);
    background: var(--primary-600);
    border: 1px solid var(--primary-600);
}

/* AD POPUP CSS */
#ad-popup .modal-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
}

#ad-popup .modal-body img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

#ad-popup .modal-body p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

#ad-popup .modal-body .btn-3 {
    min-width: 190px;
    justify-content: center;
    margin: 0 auto;
    line-height: 28px;
}

#ad-popup .btn-close {
    width: 20px;
    height: 20px;
    padding: 0;
    position: absolute;
    top: 24px;
    right: 24px;
}

#ad-popup .popup-right {
    padding-top: 24px;
}

#ad-popup .modal-content{
    border: none;
    border-radius: 12px;
}
.btn360{
    position: fixed;
    right: 15px;
    bottom: 40px;
    width: 80px;
    z-index: 99;
}
.btn360 img{
    width: 100%;
}
/* RESPONSIVE */
@media only screen and (min-width: 768px) {
    .position-md-relative {
        position: relative !important;
    }
}

@media only screen and (min-width: 992px) {
    .pb-lg-120 {
        padding-bottom: 120px !important;
    }

    .pt-lg-64 {
        padding-top: 64px !important;
    }

    .mt-lg-0{
        margin-top: 0 !important;
    }
}

@media only screen and (min-width: 1199.98px) {
    .list-files h4.title {
        line-height: 28px;
    }
}

@media only screen and (max-width: 1280.98px) {
    .banner .swiper-slide_image {
        background-position: center 10%;
    }

    .banner-content p {
        font-size: 18px;
        line-height: 24px;
    }

    .section-5 .section-grid h3 {
        font-size: 44px;
        line-height: 64px;
    }

    .header-wrap_right ul {
        margin-right: 15px;
    }

    .header-nav {
        margin-left: 20px;
    }

    .header-wrap_right a.logo img {
        width: 50px;
    }
}

@media only screen and (max-width: 1199.98px) {
    .banner-content p {
        font-size: 16px;
    }
    
    .profile-grid{
        grid-template-columns: repeat(4, 1fr);
    }

    h1.title,
    h1 {
        font-size: 44px;
        line-height: 64px;
    }

    h2.title,
    h2 {
        font-size: 32px;
        line-height: 48px;
    }

    h3.title,
    h3 {
        font-size: 20px;
        line-height: 32px;
    }

    h4.title,
    h4 {
        font-size: 18px;
        line-height: 24px;
    }

    .section-2 .box-right span:not(.icon) {
        font-size: 14px;
        line-height: 20px;
    }

    .section-2 .box-right {
        padding: 40px 20px;
    }

    .section-2 .blog-item_large {
        margin-bottom: 24px;
    }

    .blog-grid .blog-item:not(:last-child) {
        margin-bottom: 40px;
    }

    .header-nav li {
        margin-right: 10px;
    }

    .header-wrap_right ul li:not(:last-child) {
        margin-right: 10px;
    }

    .hedear-wrap .has-dropdown .nav-link {
        font-size: 11px;
    }

    .section-2 .blog-grid .blog-item.style-2 {
        margin-bottom: 40px;
    }

    .phat-trien .section-2 .box-right {
        aspect-ratio: unset;
    }

    .nha-dau-tu .section-2 .box-right {
        aspect-ratio: unset;
    }

    .section-5 .grid-item span:not(.counter) {
        padding: 0;
    }

    .section-5 .section-grid h3 {
        font-size: 32px;
        line-height: 48px;
    }

    .section-5 .grid-item span:not(.counter) {
        line-height: 20px;
    }

    .ve-chung-toi .section-1 .light-bg {
        height: 60%;
    }

    .banner .youtube-iframe {
        height: 560px;
    }

    .grid-files .file-thumb h4.title {
        font-size: 20px;
    }

    .tuyen-dung .grid-box .box-left {
        padding-left: 60px;
    }

    .chien-luoc .section-4 .grid-box {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    .chien-luoc .section .box-item h3.title,
    .chien-luoc .section-4 h3.title,
    .chien-luoc .section-3 h3.title {
        font-size: 32px;
        line-height: 48px;
    }

    .so-do .section-3 .grid-box {
        grid-template-columns: 31% 22% 22% 22%;
    }

}

@media only screen and (max-width: 991.98px) {
    body {
        font-size: 16px;
        line-height: 24px;
    }
    
    .profile-grid{
        grid-template-columns: repeat(3, 1fr);
    }

    .product-detail .section-2 .section-content{
        margin-top: 0;
    }

    .ve-chung-toi .section-3 .box-left::after {
        width: 400px;
        height: 400px;
        top: 340px;
        left: 240px;
    }

    .header-wrap_right .logo {
        margin-right: 36px;
    }

    .ve-chung-toi .section-1 #youtube-video {
        margin-top: 16px;
        border-top-left-radius: 80px;
    }

    .ve-chung-toi .section-1 p {
        line-height: 24px;
    }

    .blog-container:not(:last-child) {
        margin-bottom: 80px;
    }

    .ad-item:first-child {
        margin-top: 40px;
    }

    .related-blog h2.title {
        margin-bottom: 40px;
    }

    .ve-chung-toi .section-4 .box-icon {
        font-size: 16px;
        line-height: 24px;
    }

    .ve-chung-toi .section-6 span.title {
        font-size: 16px;
        line-height: 24px;
    }

    .thu-vien .section-heading h2.title {
        margin-bottom: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .small-banner .background-img {
        aspect-ratio: unset;
        height: 480px;
    }

    .blog-list .blog-desc {
        -webkit-line-clamp: 3;
    }

    .search-wrap {
        display: none;
    }

    .section-1 {
        margin-top: 0;
    }

    .grid-files {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16px;
    }

    header {
        background: var(--white-600);
    }

    header .logo1 {
        display: none;
    }

    header .logo2 {
        display: block
    }

    header .header-wrap_right ul {
        display: none;
    }

    header .menu-btn.active::after,
    header .menu-btn.active::before {
        border-color: var(--black-color);
    }

    .banner .swiper-pagination {
        bottom: 10%;
    }

    .banner-content {
        top: 50%;
        left: 120px;
        right: 120px;
        transform: translateY(-50%);
    }

    .section {
        padding-top: 80px;
    }

    .ve-chung-toi .section-1 {
        padding-bottom: 80px;
    }

    .blog-detail {
        padding-bottom: 80px;
    }

    .ve-chung-toi .section-6 {
        padding-bottom: 80px;
    }

    .ve-chung-toi .section-7 {
        padding-bottom: 80px;
    }

    .nha-dau-tu .section-1 {
        padding-bottom: 80px;
    }
    .section-4 img{
        height: auto;
    }
    .related-blog {
        padding-bottom: 80px;
    }
    .section-4{
        padding-bottom: 80px;
    }
    .header-nav {
        display: none;
    }

    .header-wrap_right ul {
        margin-right: 20px;
    }

    header .menu-btn {
        display: block;
        margin-right: 15px;
    }

    .blog-category,
    .category {
        font-size: 12px;
        line-height: 18px;
    }

    .blog-grid {
        column-gap: 15px;
    }

    .section-3 .box-left {
        margin-bottom: 30px;
    }

    .section-4 .section-heading {
        margin-bottom: 30px;
    }

    .section-4 .large-image {
        margin-top: 16px;
    }

    .section-4 .col-lg-6:first-child {
        order: 2;
    }

    .section-4 h4.title {
        margin-bottom: 16px;
    }

    .section-5 .section-heading p {
        padding: 0;
    }

    .banner .swiper {
        border-bottom-left-radius: 80px;
    }

    .section-3 {
        border-bottom-right-radius: 80px;
        border-top-left-radius: 80px;
    }

    .section-5 {
        border-top-right-radius: 80px;
    }

    .section-3 .box-content {
        padding: 0 15px;
    }

    .section-5 .section-grid h3 {
        font-size: 20px;
        line-height: 32px;
    }

    .section-5 .section-heading {
        margin-bottom: 30px;
    }

    .footer-body_top {
        padding: 40px 0;
    }

    .footer-info {
        margin-bottom: 30px;
    }

    #ad-popup .modal-body {
        grid-template-columns: 100%;
    }

    #ad-popup .popup-left {
        padding-top: 24px;
    }

    #ad-popup .modal-body.p-0 .popup-left{
        padding-top: 0;
    }

    #ad-popup .popup-right {
        padding-top: 16px;
    }

    a.link {
        font-size: 16px;
        line-height: 20px;
    }

    .breadcrumb {
        padding-top: 16px;
    }

    .ve-chung-toi .section-3 .box-left {
        margin-bottom: 0;
        padding: 60px;
        border-bottom-left-radius: 80px;
    }

    .ve-chung-toi .section-4 .box-icon {
        padding: 0 15px;
    }

    .ve-chung-toi .section-2,
    .ve-chung-toi .section-2::after {
        border-top-right-radius: 80px;
    }

    .ve-chung-toi .section-4 .icon {
        width: 40px;
    }

    .nav-tabs .nav-link {
        padding: 13px 14px;
        font-size: 16px;
        line-height: 24px;
        margin-right: 4px;
        font-family: var(--light-font)
    }

    .ve-chung-toi .section-7 .box-left {
        order: 2;
    }

    .ve-chung-toi .section-7 .grid-box {
        margin-bottom: 40px;
    }

    h2.title,
    h2 {
        margin-bottom: 40px;
    }

    .tuyen-dung .grid-box {
        grid-template-columns: 100%;
    }

    .tuyen-dung .grid-box .box-left {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }

    .tuyen-dung .grid-box .box-left h2.title {
        margin-bottom: 40px;
    }

    .recruit-position,
    .recruit-location,
    .recruit-btn {
        padding: 24px 16px;
    }

    .recruit-item,
    .recruit-heading {
        grid-template-columns: repeat(3, 1fr);
    }

    .lien-he .map-bottom::after {
        top: 35%;
        left: 85%;
    }

    .lien-he .section h2.title {
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-link {
        margin-bottom: 40px;
    }

    .lien-he .col-lg-7 {
        padding: 0;
    }

    .lien-he .map iframe {
        border-radius: 0;
    }

    .lien-he .map-bottom {
        padding: 16px 20px;
    }

    .lien-he .grid-box .box-right {
        padding: 80px 20px;
    }

    .lien-he .grid-box {
        grid-template-columns: 100%;
    }

    .lien-he .grid-box .box-right .form-group .icon {
        top: 14px;
    }

    .chien-luoc .section-1 .box-item:not(:last-child) {
        border-right: none;
    }

    .chien-luoc .section-1 .grid-box {
        grid-template-columns: 100%;
        row-gap: 80px;
    }

    .chien-luoc .section-3 .grid-item {
        grid-template-columns: 100%;
        row-gap: 40px;
    }

    .chien-luoc .section-3 .grid-item .item-img {
        order: 2;
    }

    .chien-luoc .section.section-1 p {
        font-size: 16px;
        line-height: 24px;
    }

    .chien-luoc .section-3 .grid-item h4.title {
        font-size: 20px;
        line-height: 32px;
    }

    .ve-chung-toi .section-1 h1.title {
        margin-bottom: 40px;
    }

    .phat-trien .section-4 .grid-content {
        grid-template-columns: 100%;
        row-gap: 32px;
    }

    .phat-trien .section-4 .blog-list .blog-item {
        margin-bottom: 32px;
    }

    .phat-trien .section-2 .grid-box {
        grid-template-columns: 100%;
        row-gap: 8px;
    }

    .phat-trien .section-2 .box-right {
        border-radius: 16px;
    }

    .phat-trien .section-2 .box-left {
        order: 2;
    }

    .phat-trien .section-2 .box-left img {
        border-top-left-radius: 16px;
        border-bottom-left-radius: 80px;
    }

    .phat-trien .section-4 .icon {
        width: 20px;
    }

    .thue-van-phong .section-2 .grid-box {
        grid-template-columns: 100%;
        margin-bottom: 24px;
    }

    .thue-van-phong .section-2 h2.title {
        margin-bottom: 24px;
    }

    .thue-van-phong .section-2 .grid-box .box-right {
        order: 2;
    }

    .thue-van-phong .section-2 .grid-box img,
    .thue-van-phong .section-2 .grid-box iframe {
        height: 535px;
    }

    .thue-van-phong .section-2 .grid-box:last-child {
        row-gap: 0;
    }

    .thue-van-phong .section-2 .grid-box:last-child img {
        border-bottom-right-radius: 16px;
        border-top-left-radius: 80px;
        margin-top: 80px;
    }

    .thue-van-phong .section-2 {
        padding-bottom: 0;
    }

    .thue-van-phong .section-3 .grid-item {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .thue-van-phong .lien-he .grid-box .box-right {
        border-radius: 0;
    }

    .thue-van-phong .section-1 .box-right {
        padding: 20px;
    }

    .product-detail .product-images {
        margin-bottom: 40px;
    }

    .product-detail .section-1 h2.title {
        margin-bottom: 16px;
    }

    .product-detail p {
        margin-bottom: 16px;
    }

    .product-detail .section-1 .product-desc {
        margin-bottom: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    .san-pham .section-2 .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tra-cuu .box-right {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0;
        background: var(--primary-600);
        color: var(--white-600);
    }

    .tra-cuu {
        margin-bottom: 193px;
    }

    .tra-cuu .section {
        padding-top: 40px;
    }

    .section.light-bg {
        background: var(--white-600) !important;
    }

    .tra-cuu h2.title {
        margin-bottom: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .tra-cuu h2.title .icon {
        width: 32px;
        height: 32px;
        transition: all .3s ease-in-out;
    }

    .tra-cuu .section-content {
        background: var(--light-bg);
        padding: 16px 0;
    }

    .tra-cuu .section-content .box-left {
        display: none;
        margin-top: 16px;
    }

    .tra-cuu h2.title.active {
        color: var(--primary-600);
    }

    .tra-cuu h2.title.active .icon {
        transform: rotate3d(1, 0, 0, 180deg);
    }

    .tra-cuu .section-content h4.title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .tra-cuu .section-content h4.title .icon {
        width: 20px;
        height: 20px;
        transition: all .3s ease-in-out;
    }

    .tra-cuu .section-content h4.title.active {
        color: var(--primary-600);
    }

    .tra-cuu .section-content h4.title.active .icon {
        transform: rotate3d(1, 0, 0, 180deg);
    }

    .tra-cuu .box-left {
        padding: 12px 16px;
    }

    .tra-cuu .section-content .border-top {
        margin-top: 12px;
        padding-top: 16px;
        border-top: 1px solid var(--extra-light) !important;
        display: none;
    }

    .tra-cuu .box-left.active {
        border-color: var(--primary-600);
    }

    .tra-cuu .login {
        margin-top: 16px;
    }

    .tra-cuu .box-left .form-group {
        margin-bottom: 16px;
    }

    .tra-cuu .box-right {
        padding: 24px 20px;
    }

    .profile {
        margin-bottom: 8px;
    }

    .so-do .section-3 .grid-box {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 8px;
    }

    .so-do .section-3 .box-left {
        margin-bottom: 0;
    }
    .nha-dau-tu .section-2.style-2{
        padding-top: 0;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 860px) {
    .ve-chung-toi .section-5 .grid-box {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "item1 item2"
            "item3 item4";
    }
}

@media only screen and (max-width: 820px) {
    .footer-top .top-wrap {
        flex-direction: column;
        align-items: start;
    }

    .footer-top .contact-info {
        margin-top: 12px;
    }
}

@media only screen and (max-width: 767.98px) {
    body {
        font-size: 14px;
        line-height: 20px;
    }
    
    .profile-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .loading img{
        width: 80%;
    }

    .nav-tabs.style-1 .nav-link {
        padding: 0 20px;
    }

    .nav-tabs.style-1 .nav-link .icon {
        width: 32px;
        height: 32px;
    }

    .ve-chung-toi .section-3 .box-left::after {
        top: 250px;
        left: 450px;
    }

    .row>* {
        padding-left: 20px;
        padding-right: 20px;
    }

    .list-files .file-item {
        padding: 24px 0;
    }

    .section-4 .col-6:first-child {
        padding-right: 0;
    }

    .section-1 .box-left {
        padding: 20px;
    }

    .nha-dau-tu .section:not(.section-1).style-2 .box-right {
        padding: 32px 16px;
    }

    .thu-vien .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1.title,
    h1 {
        font-size: 32px;
        line-height: 48px;
    }

    h3.title,
    h3 {
        font-size: 18px;
        line-height: 24px;
    }

    h4.title,
    h4 {
        font-size: 16px;
        line-height: 20px;
    }

    .grid-files .file-thumb {
        height: 400px;
        margin-bottom: 15px;
    }

    .grid-files .file-thumb h4.title {
        display: block;
        font-size: 20px;
    }

    .grid-files .file-thumb h4.title .icon {
        width: 48px;
        margin-bottom: 12px;
    }

    .icon {
        width: 20px;
    }

    .btn-icon_right .icon {
        margin-left: 5px;
    }

    .btn-icon_left .icon {
        margin-right: 5px;
    }

    .list-files h4.title span.icon svg {
        width: 20px;
    }


    .btn-3,
    .header-nav a.btn-3 {
        font-size: 16px;
        padding: 6px 14px;
    }

    .btn-2 {
        padding: 6px 14px;
    }

    .header-wrap_right ul {
        margin-right: 10px;
    }

    .header-wrap_right ul li:not(:last-child) {
        margin-right: 10px;
    }

    header {
        padding: 10px 0;
    }

    .header-logo {
        max-width: 160px;
    }

    .btn-icon_left .icon {
        margin-right: 5px;
    }

    .blog-grid,
    .section-2 .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-2 .blog-item_large .blog-meta {
        margin-bottom: 12px;
    }

    .blog-thumb {
        margin-bottom: 12px;
    }

    .section-2 .box-right {
        padding: 20px;
    }

    .section-2 .box-right span:not(.icon) {
        top: 20px;
    }

    .banner .swiper-button-next,
    .banner .swiper-button-prev {
        display: none;
    }

    .banner .swiper-pagination-bullet {
        width: 70px;
        height: 2px;
    }

    .section-3 .blog-item .blog-meta {
        margin-bottom: 12px;
    }

    .section-5 h2.title {
        margin-bottom: 16px;
    }

    .section-5 .grid-item {
        padding: 0 10px;
    }

    .section-5 .section-heading p {
        font-size: 14px;
        line-height: 20px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer-body_top {
        padding: 30px 0 0 0;
    }

    .footer-top .contact-info {
        flex-wrap: wrap;
    }

    .ve-chung-toi .section-6 .grid-box {
        grid-template-columns: repeat(3, 1fr);
    }

    .ve-chung-toi .section-7 .grid-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .ve-chung-toi .section-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    .ve-chung-toi .section-3 .box-left {
        border-bottom-left-radius: 0;
    }

    .ve-chung-toi .section-4 .grid-box {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 30px;
    }

    .ve-chung-toi .section .box-item_top {
        padding: 20px;
    }

    .ve-chung-toi .section-1 h1.title {
        margin-bottom: 40px;
    }

    .ve-chung-toi .section-6 .section-heading {
        margin-bottom: 40px;
    }

    .ve-chung-toi .section-7 h2.title {
        margin-bottom: 40px;
    }

    .nha-dau-tu .section:not(.section-1) .box-right .box-content .logo {
        width: 150px;
    }

    .nha-dau-tu .section:not(.section-1) .box-right {
        width: 320px;
        height: 370px;
        margin: 0 auto;
        margin-top: 40px;
        padding: 30px 30px 64px 30px;
    }

    .nha-dau-tu .section:not(.section-1) .box-right .file-icon {
        width: 48px;
    }

    .nha-dau-tu .section-2.style-2 .col-xl-7 {
        order: unset;
    }

    .ve-chung-toi .section-2 {
        aspect-ratio: unset;
    }

    .ve-chung-toi .section-7 .grid-box h3.title {
        font-size: 20px;
    }

    .recruit-item,
    .recruit-heading {
        grid-template-columns: 100%;
    }

    .recruit-position,
    .recruit-location,
    .recruit-btn {
        padding: 0;
    }

    .recruit-position,
    .recruit-location {
        margin-bottom: 12px;
    }

    .recruit-item {
        padding: 24px 16px;
    }

    .lien-he .map-bottom::after {
        left: 80%;
    }

    .chien-luoc .section-4 .grid-box {
        grid-template-columns: 100%;
        row-gap: 24px;
    }

    .chien-luoc .section .box-item h3.title,
    .chien-luoc .section-4 h3.title,
    .chien-luoc .section-3 h3.title {
        font-size: 26px;
        line-height: 32px;
    }

    .chien-luoc .section-3 .grid-item h4.title {
        font-size: 20px;
        line-height: 32px;
    }

    .timeline .grid-item:nth-child(even) .timeline-item {
        order: unset;
        padding-left: 40px;
    }

    .timeline .grid-item:nth-child(odd) .timeline-item {
        text-align: left;
    }

    .timeline .grid-item:nth-child(odd) .timeline-item .timeline-content {
        margin-left: unset;
    }

    .timeline .grid-item:nth-child(odd) .timeline-item {
        padding-right: 0;
        padding-left: 40px;
    }

    .timeline-item {
        margin-bottom: 40px;
    }

    .timeline .grid-item:nth-child(odd) .timeline-icon,
    .timeline .grid-item:nth-child(even) .timeline-icon {
        left: 0;
    }

    .timeline::after {
        transform: none;
        left: 15px;
    }

    .timeline .grid-item {
        grid-template-columns: 100%;
    }

    .small-banner .banner-content p {
        max-width: 100%;
    }

    .blog-filter {
        grid-template-columns: 100%;
        row-gap: 20px;
    }

    .phat-trien .section-5 {
        background-image: unset;
        padding: 0;
    }

    .phat-trien .section-5 .row>* {
        padding: 0;
    }

    .phat-trien .section-5 .section-content {
        padding: 80px 20px;
        border-radius: 0;
    }

    .thue-van-phong .section-2 .grid-box:last-child img,
    .thue-van-phong .section-2 .grid-box img,
    .thue-van-phong .section-2 .grid-box iframe {
        height: 300px;
    }

    .thue-van-phong .section-2 .grid-box:last-child .box-right {
        margin-right: -20px;
        margin-left: -20px;
    }

    .thue-van-phong .section-2 .grid-box:last-child img {
        border-radius: 0;
        border-top-left-radius: 80px;
    }

    .product-detail .product-images {
        padding: 16px 0 9px 0;
    }

    .tra-cuu .box-left .form-group {
        flex-wrap: wrap;
    }

    .tra-cuu .box-left .form-group label {
        width: 100%;
        margin-bottom: 8px;
    }

    .tra-cuu .box-left .form-group .form-control {
        margin-left: 0;
        margin-right: 10px;
    }

    .tra-cuu .box-left .login .form-group .form-control {
        margin-right: 0;
    }

    .so-do .section-3 .grid-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .phat-trien .section-3 {
        background-size: cover;
    }
}

@media only screen and (max-width: 680px) {
    .banner-content {
        left: 15px;
        right: 15px;
    }
}

@media only screen and (max-width: 575.98px) {
    .mobile-menu {
        display: flex;
    }
    
    .profile-grid{
        grid-template-columns: repeat(1, 1fr);
    }
    
    .ve-chung-toi .section-3 .box-left::after {
        top: 300px;
        left: 350px;
        width: 367px;
        height: 367px;
    }

    .banner .youtube-iframe {
        height: 250px;
    }

    .header-logo {
        max-width: 110px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-list .blog-item {
        grid-template-columns: 100%;
    }

    .blog-list .blog-meta {
        margin-top: 12px;
    }

    .thu-vien .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .thu-vien .blog-grid .blog-item .blog-thumb {
        height: auto;
    }

    h1.title,
    h1 {
        font-size: 28px;
        line-height: 48px;
    }

    h2.title,
    h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .mobile-menu .menu-img {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        filter: blur(10px);
    }

    .mobile-menu .menu-img::after {
        width: 100%;
        background-image: linear-gradient(to right, rgba(56, 158, 158, 1), rgba(56, 158, 158, 0.4), rgba(56, 158, 158, 1));
    }

    .grid-files .file-thumb {
        height: auto;
        aspect-ratio: 2/3;
    }

    .grid-files {
        grid-template-columns: repeat(1, 1fr);
    }

    .blog-grid,
    .section-2 .blog-grid {
        grid-template-columns: 100%;
    }

    .section-2 .blog-item_large {
        grid-template-columns: 100%;
    }

    .blog-grid .blog-item .blog-thumb {
        height: auto;
    }

    .blog-grid .blog-item .blog-thumb,.section-2 .blog-item_large .blog-thumb {
        aspect-ratio: 3/2;
    }

    .section-2 .blog-item_large .blog-thumb {
        margin-bottom: 16px;
    }

    .section-3 .blog-item .blog-thumb {
        aspect-ratio: 3/2;
    }

    .section-3 .blog-thumb img {
        height: 100%;
    }

    .section-1 .box-wrap {
        grid-template-columns: 100%;
        border-radius: 0;
        border-top-right-radius: 80px;
    }

    .section-1 .col-lg-10 {
        padding: 0;
    }

    .section-3 .blog-content {
        padding: 15px;
    }

    .section-3 .box-content {
        padding: 0;
    }

    .section-4 .small-image {
        width: unset;
        height: unset;
        aspect-ratio: 3 / 2;
    }

    .section-5 .section-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-5 .grid-item:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid var(--white-200);
    }

    .section-5 .grid-item:nth-child(1) {
        border-bottom: 1px solid var(--white-200);
    }

    .section-5 .grid-item span:not(.counter) {
        height: unset;
    }

    .section-5 .grid-item {
        padding: 10px;
    }

    .footer-top .contact-info a,
    .footer-top .contact-info div {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .footer-body_bottom {
        flex-direction: column;
    }

    .footer-body_bottom span {
        margin-top: 5px;
    }

    .cookie-wrap {
        flex-direction: column;
        text-align: center;
    }

    .cookie-wrap span {
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 24px;
    }

    .cookie {
        padding: 10px 0;
    }

    .ve-chung-toi .section-6 .grid-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .ve-chung-toi .section-5 .grid-box {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
            "item2"
            "item1"
            "item4"
            "item3";
    }

    .ve-chung-toi .section .box-img_top {
        border-top-right-radius: 80px;
    }

    .ve-chung-toi .section .box-img_bottom {
        border-bottom-left-radius: 80px;
    }

    .ve-chung-toi .section .box-item {
        height: 190px;
    }

    .ve-chung-toi .section-6 .box-item {
        height: auto;
    }

    .ve-chung-toi .section .box-item_top,
    .ve-chung-toi .section .box-item_bottom {
        height: auto;
    }

    .ve-chung-toi .section-3 .box-left {
        padding: 80px 20px;
    }

    .lien-he .map-bottom::after {
        left: 75%;
    }

    .chien-luoc .section-1 .box-item {
        height: auto;
    }

    .phat-trien .section-2 .box-left img {
        height: 180px;
    }

    .thue-van-phong .section-3 .grid-item img {
        width: 100%;
        height: auto;
    }

    .thue-van-phong .section-3 .grid-item {
        column-gap: 40px;
    }

    .thue-van-phong .section-2 .grid-box:last-child img,
    .thue-van-phong .section-2 .grid-box img,
    .thue-van-phong .section-2 .grid-box iframe {
        height: 230px;
    }

    .product-grid {
        grid-template-columns: 100%;
    }

    .san-pham .section-2 .product-grid {
        grid-template-columns: 100%;
    }

    .product-detail .product-images img {
        width: 170px;
    }

    .tra-cuu .list-item .item-title {
        flex-wrap: wrap;
    }

    .tra-cuu .box-left .form-group .form-control {
        width: 160px;
    }

    .tra-cuu .box-left .login .form-group .form-control {
        width: 100%;
    }

    .so-do .section-3 .grid-box {
        grid-template-columns: 100%;
    }

    .so-do .section-3 .box-left {
        padding: 80px 20px;
    }
}

@media only screen and (max-width: 480px) {

    header .menu-btn {
        margin-left: 0;
    }

    .ve-chung-toi .section-3 .box-left::after {
        left: 250px;
        top: 350px;
    }

    .mobile-menu .btn-3 {
        display: flex;
    }

    .search-style2 input,
    .search-style2 {
        width: 100%;
    }

    .ve-chung-toi .section-6 .grid-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .ve-chung-toi .section-4 .grid-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .ve-chung-toi .section-4 .box-icon {
        padding: 24px 0;
    }

    .ve-chung-toi .section-4 .box-icon:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(43, 50, 59, 0.1);
    }

    .ve-chung-toi .section-4 .box-icon:last-child {
        padding-bottom: 0;
    }

    .lien-he .map-bottom::after {
        top: 40%;
        left: 70%;
    }

    .tra-cuu .box-left .form-group .form-control {
        width: 115px;
    }

    .tra-cuu .box-left .login .form-group .form-control {
        width: 100%;
    }

    .header-wrap_right a.logo img {
        width: 40px;
    }

    .header-wrap_right .logo {
        margin-right: 24px;
    }

    .btn-3,
    .header-nav a.btn-3 {
        font-size: 14px;
        padding: 6px 10px;
    }

    .header-logo {
        max-width: 90px;
    }

    .mobile-menu {
        top: 61px;
    }

    .tac-gia .author-social .btn-3 svg{
        width: 16px;
        height: 16px;
    }

    .tac-gia .author-social .btn-3{
        margin-right: 10px;
    }

    .tac-gia .author-avatar img{
        width: 120px;
    }
}

@media only screen and (max-width: 380px) {

    .nha-dau-tu .section:not(.section-1) .box-right {
        width: 100%;
    }

    .ve-chung-toi .section-3 .box-left::after {
        left: 167px;
        top: 390px;
    }

    .ve-chung-toi .background {
        height: 695px;
    }
    
    .blog-date{
        font-size: 12px;
    }
}

@media only screen and (max-width: 360px) {
    .nav-tabs.style-1 {
        width: max-content;
    }

    .ve-chung-toi .section .box-item_bottom {
        padding: 20px;
    }

    footer .widget-list a {
        font-size: 14px;
    }

    h2.title,
    h2 {
        font-size: 24px;
    }

    .phat-trien .section-2 .box-right {
        padding: 40px 20px;
    }

    .header-wrap_right .logo {
        margin-right: 10px;
    }
}

@media only screen and (max-width: 345px) {
    .phat-trien .section-3 {
        background-image: url(../images/bg-mb-icon3.svg);
        background-size: contain;
    }
    
    .header-wrap_right a.logo img {
        width: 30px;
    }
    
    header a.btn-3 {
        font-size: 13px;
    }
}

@media only screen and (max-width: 330px) {

    header .menu-btn {
        margin-right: 10px;
    }

    .mobile-menu{
        top: 52px;
    }
}