<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('../../static/css/fonts.css');
.header {
    position: relative;
    padding: 4rem 0 1rem;
    border-top: 1rem solid #8d8e8d;
}
.header nav {
    display: grid;
    grid-template-columns: min-content auto min-content;
    grid-row-gap: 1.5rem;
}
.header nav .logo {
    width: 14.6rem;
}
.header nav .logo img {
    width: 100%;
    height: auto;
}
.header nav .menu {
    margin: 0;
    text-align: center;
}
.header nav .menu .menu-item {
    position: relative;
    display: inline-block;
    margin: 1rem 0.9rem 0;
}
.header nav .menu .menu-item:first-child {
    margin-left: 0;
}
.header nav .menu .menu-item:last-child {
    margin-right: 0;
}
.header nav .menu .menu-item.active {
    position: relative;
}
.header nav .menu .menu-item.active:before {
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    z-index: -1;
    content: '';
    width: 100%;
    height: 1.2rem;
    background-color: #e4c81f;
    border-radius: 1rem;
}
.header nav .menu .menu-item a {
    font-size: 1.6rem;
    color: #231f20;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}
.header nav .menu .menu-item:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    animation-name: oxy-menu-moveup;
    animation-duration: 0.5s;
}

@keyframes oxy-menu-moveup {
    from {
        opacity: 0;
        transform: translateY(5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.header nav .menu .menu-item .menu-dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 100%;
    width: max-content;
    z-index: 100;
}
.header nav .menu .menu-item .menu-dropdown .box-menu-dropdown {
    position: relative;
    margin-top: 1rem;
    padding: 1.2rem 3rem 1.8rem;
    text-align: left;
    border-top: 0.3rem solid #930000;
    border-radius: 0.5rem;
    background-color: #fff;
    box-shadow: 0.2rem 0.2rem 1.2rem rgba(255, 255, 255, 0.342);
}
.header nav .menu .menu-item .menu-dropdown .box-menu-dropdown:before {
    position: absolute;
    content: '';
    top: -0.2rem;
    left: 1rem;
    transform: translateY(-100%);
    width: 0;
    height: 0;
    border-left: 0.8rem solid transparent;
    border-right: 0.8rem solid transparent;
    border-bottom: 0.8rem solid #930000;
}
.header nav .menu .menu-item .menu-dropdown .box-menu-dropdown .menu-item-dropdown + .menu-item-dropdown {
    margin-top: 1.2rem;
}
.header nav .menu .menu-item .menu-dropdown .box-menu-dropdown .menu-item-dropdown a {
    font-size: 1.5rem;
    font-weight: normal;
    text-transform: unset;
}
.header nav .menu .menu-item .menu-dropdown .box-menu-dropdown .menu-item-dropdown a:hover {
    color: #930000;
}
.header nav .search-hotline {
    width: 20.2rem;
}
.header nav .search-hotline .search {
    margin-top: 0.6rem;
    height: fit-content;
    position: relative;
}
.header nav .search-hotline .search input {
    width: 100%;
    padding-right: 2rem;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    background-color: #e0e2e1;
    border-color: #8d8e8d;
    border-width: 0 0 0.1rem 0;
    border-radius: 0;
}
.header nav .search-hotline .search .btn-search {
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #8d8e8d;
    display: inline-flex;
    cursor: pointer;
}
.header nav .search-hotline .search .btn-search img {
    width: 1.6rem;
    height: auto;
}
.header nav .search-hotline .hotline {
    width: 100%;
    display: inline-grid;
    grid-template-columns: max-content auto;
    margin-top: 1rem;
    background-color: #930000;
    border: 0.2rem solid #930000;
}
.header nav .search-hotline .hotline span,
.header nav .search-hotline .hotline a {
    display: inline-block;
    padding-bottom: 0.4rem;
    font-size: 1.6rem;
    color: #930000;
}
.header nav .search-hotline .hotline span {
    width: fit-content;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    text-transform: uppercase;
    color: #fff;
}
.header nav .search-hotline .hotline a {
    display: flex;
    justify-content: center;
    background-color: #e0e2e1;
}

@media (max-width: 991px) {
    .header {
        padding: 1.5rem 0;
    }
    .header .btn-menu-mobile {
        display: flex;
    }
    .header nav {
        display: flex;
        justify-content: center;
    }
    .header nav .logo {
        width: 20rem;
    }
    .header nav .menu,
    .header nav .search-hotline {
        display: none;
    }
}

.footer {
    padding-bottom: 4.7rem;
    background: url('../../static/images/footer-banner.png') no-repeat;
    background-size: cover;
}
.footer .branch-system {
    width: 1274px;
    max-width: calc(100% - 30px);
    padding: 2.5rem 15px;
    margin: 0 auto;
    transform: translateY(-4rem);
    background-color: #efbf1a;
    box-shadow: 0 -4px 10px #00000069;
    position: relative;
}
.footer .branch-system .title {
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 2.5rem;
    text-align: center;
    color: #373737;
}
.footer .branch-system .list-branch {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 3rem 1.2rem;
}
@media (max-width: 991px) {
    .footer .branch-system .list-branch {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .footer .branch-system .list-branch {
        grid-template-columns: 100%;
    }
}
.footer .branch-system .list-branch .branch-item .title {
    width: fit-content;
    margin-bottom: 1.5rem;
    padding: 0.2rem 0.4rem;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.9rem;
    color: #383838;
    border: 0.1rem solid #383838;
}
.footer .branch-system .list-branch .branch-item .location,
.footer .branch-system .list-branch .branch-item .tel,
.footer .branch-system .list-branch .branch-item .mail {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer .branch-system .list-branch .branch-item .location .icon,
.footer .branch-system .list-branch .branch-item .tel .icon,
.footer .branch-system .list-branch .branch-item .mail .icon {
    margin-top: 0.2rem;
    width: 1rem;
    height: auto;
}
.footer .branch-system .list-branch .branch-item .location p,
.footer .branch-system .list-branch .branch-item .tel p,
.footer .branch-system .list-branch .branch-item .mail p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    color: #383838;
}
.footer .branch-system .list-branch .branch-item .tel .icon,
.footer .branch-system .list-branch .branch-item .mail .icon {
    margin-top: 0.6rem;
}
.footer .branch-system .list-branch .branch-item .tel {
    align-items: flex-start;
}
.footer .product-category {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(6, auto);
    grid-gap: 1rem 3rem;
}
@media (max-width: 1200px) {
    .footer .product-category {
        grid-template-columns: repeat(5, auto);
    }
}
@media (max-width: 991px) {
    .footer .product-category {
        grid-template-columns: repeat(3, auto);
    }
}
@media (max-width: 767px) {
    .footer .product-category {
        grid-template-columns: repeat(2, auto);
    }
}
.footer .product-category .category-item a {
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
}
.footer .logo-search {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
}
.footer .logo-search .logo a:hover {
    opacity: 1;
}
.footer .logo-search .logo img {
    width: 25.6rem;
    height: auto;
}
.footer .logo-search .search-hotline {
    width: 20.2rem;
}
.footer .logo-search .search-hotline .search {
    height: fit-content;
    position: relative;
}
.footer .logo-search .search-hotline .search input {
    width: 100%;
    padding-right: 2rem;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    background-color: transparent;
    border-color: #8d8e8d;
    border-width: 0 0 0.1rem 0;
    border-radius: 0;
    color: #fff;
}
.footer .logo-search .search-hotline .search .btn-search {
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #8d8e8d;
    display: inline-flex;
    cursor: pointer;
}
.footer .logo-search .search-hotline .search .btn-search img {
    width: 1.6rem;
    height: auto;
}
.footer .logo-search .search-hotline .hotline {
    width: 100%;
    display: inline-grid;
    grid-template-columns: max-content auto;
    margin-top: 1rem;
    background-color: transparent;
    border: 0.2rem solid #8d8e8d;
}
.footer .logo-search .search-hotline .hotline span,
.footer .logo-search .search-hotline .hotline a {
    display: inline-block;
    padding-bottom: 0.4rem;
    font-size: 1.6rem;
    color: #8d8e8d;
}
.footer .logo-search .search-hotline .hotline span {
    width: fit-content;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    text-transform: uppercase;
    color: #231f20;
    background-color: #8d8e8d;
}
.footer .logo-search .search-hotline .hotline a {
    display: flex;
    justify-content: center;
    background-color: transparent;
}

#menu-mobile {
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    display: flex;
}
#menu-mobile.open .btn-menu .open {
    display: none;
}
#menu-mobile.open .btn-menu .close {
    display: block;
}
#menu-mobile .btn-menu {
    position: fixed;
    left: 15px;
    bottom: 30px;
    padding: 1.5rem;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: #0000008f;
    transition: all 0.3s ease-in-out;
    display: none;
    align-items: center;
    justify-content: center;
}
@media (max-width: 991px) {
    #menu-mobile .btn-menu {
        display: flex;
    }
}
#menu-mobile .btn-menu img {
    width: 3.2rem;
    height: auto;
}
#menu-mobile .btn-menu img.close {
    display: none;
}
#menu-mobile .menu {
    position: relative;
    width: 80%;
    max-width: 40rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
#menu-mobile .menu .logo {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 0.1rem solid #dedede;
}
#menu-mobile .menu .logo img {
    width: 70%;
}
#menu-mobile .menu .list-menu {
    padding: 0 1.5rem 1.5rem;
    flex: auto;
    overflow-y: auto;
}
#menu-mobile .menu .list-menu .menu-item {
    position: relative;
    padding: 1.5rem 0;
}
#menu-mobile .menu .list-menu .menu-item .icon {
    position: absolute;
    width: 5%;
    right: 1rem;
    top: 2.3rem;
    transition: 0.5s;
}
#menu-mobile .menu .list-menu .menu-item.open .icon {
    transform: rotate(180deg);
}
#menu-mobile .menu .list-menu .menu-item + .menu-item {
    border-top: 0.1rem solid #dedede;
}
#menu-mobile .menu .list-menu .menu-item.active a {
    color: #930000;
}
#menu-mobile .menu .list-menu .menu-item span,
#menu-mobile .menu .list-menu .menu-item a {
    padding-left: 1rem;
    font-size: 2rem;
    color: #231f20;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}
#menu-mobile .menu .list-menu .menu-item .menu-mobile-dropdown {
    padding-left: 2rem;
}
#menu-mobile .menu .list-menu .menu-item .menu-mobile-dropdown .menu-item-dropdown {
    padding: 1rem 0;
}
#menu-mobile .menu .list-menu .menu-item .menu-mobile-dropdown a {
    font-weight: normal;
    text-transform: unset;
}
#menu-mobile .menu .search-hotline {
    padding: 2rem 1.5rem;
}
#menu-mobile .menu .search-hotline .search {
    height: fit-content;
    position: relative;
}
#menu-mobile .menu .search-hotline .search input {
    width: 100%;
    padding-right: 2rem;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    background-color: transparent;
    border-color: #8d8e8d;
    border-width: 0 0 0.1rem 0;
    border-radius: 0;
}
#menu-mobile .menu .search-hotline .search .btn-search {
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #8d8e8d;
    display: inline-flex;
    cursor: pointer;
}
#menu-mobile .menu .search-hotline .search .btn-search img {
    width: 1.6rem;
    height: auto;
}
#menu-mobile .menu .search-hotline .hotline {
    width: 100%;
    display: inline-grid;
    grid-template-columns: max-content auto;
    margin-top: 1rem;
    background-color: #930000;
    border: 0.2rem solid #930000;
}
#menu-mobile .menu .search-hotline .hotline span,
#menu-mobile .menu .search-hotline .hotline a {
    display: inline-block;
    padding-bottom: 0.4rem;
    font-size: 1.6rem;
    color: #930000;
}
#menu-mobile .menu .search-hotline .hotline span {
    width: fit-content;
    padding-left: 4rem;
    padding-right: 4rem;
    text-transform: uppercase;
    color: #fff;
}
#menu-mobile .menu .search-hotline .hotline a {
    display: flex;
    justify-content: center;
    background-color: #e0e2e1;
}
#menu-mobile .mask {
    flex: auto;
    background-color: transparent;
    transition: all 0.15s ease-in-out;
}

body {
    background-color: #e0e2e1;
}

.slider .slider-homepage {
    margin: 0;
}

.slider .slick-dots {
    bottom: 2.5rem;
}
.slider .slick-dots li {
    margin: 0 0.75rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #f7f29d;
}
.slider .slick-dots li.slick-active {
    background-color: #ffc70d;
}
.slider .slick-dots li button {
    display: none;
}

.slider .slider-item {
    overflow: hidden;
}
.slider .slider-item img {
    width: 100%;
    height: auto;
}

.business-areas {
    padding: 4.8rem 0 2.4rem;
}
.business-areas .title-section {
    display: inline-block;
    padding-bottom: 0.6rem;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.4;
    text-transform: uppercase;
    border-bottom: 0.3rem solid #231f20;
}
.business-areas .list-business-areas {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.7rem 1.5rem;
}
@media (max-width: 767px) {
    .business-areas .list-business-areas {
        grid-template-columns: 100%;
    }
}
.business-areas .list-business-areas .business-areas-item {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}
.business-areas .list-business-areas .business-areas-item::before {
    display: block;
    content: '';
    padding-bottom: 70%;
    background-color: #0000006b;
}
.business-areas .list-business-areas .business-areas-item .content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 57%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    font-size: 1.8rem;
    background-color: #efbf1a;
}
@media (max-width: 480px) {
    .business-areas .list-business-areas .business-areas-item .content {
        width: 90%;
        height: 80%;
    }
}
.business-areas .list-business-areas .business-areas-item .content .title {
    font-weight: bold;
    text-transform: uppercase;
}
.business-areas .list-business-areas .business-areas-item .content .descripton {
    overflow: hidden;
    text-align: justify;
}

.products-sale {
    padding: 2.5rem 0 2.8rem;
    background: url('../../static/images/banner-br-sp-sale-TRANG-CHU-01.png') no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
}
.products-sale .title-section {
    text-align: center;
    font-size: 2.7rem;
    font-weight: bold;
    color: #e0e2e1;
}
.products-sale .list-product {
    margin-top: 4.8rem;
    overflow: hidden;
    position: unset;
}
.products-sale .list-product .slick-prev:before,
.products-sale .list-product .slick-next:before {
    content: none;
}
.products-sale .list-product .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    width: auto;
    padding: 2rem 0.5rem;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.368);
    z-index: 1;
}
.products-sale .list-product .slick-arrow.slick-prev {
    left: 2rem;
    right: unset;
    transform: rotate(180deg) translateY(50%);
}
.products-sale .list-product .slick-arrow.slick-next {
    right: 2rem;
    left: unset;
}
.products-sale .list-product .slick-arrow svg {
    height: 3rem;
    width: auto;
    fill: #fff;
    transform: scaleY(1.6);
}
@media (max-width: 1200px) {
    .products-sale .list-product .slick-arrow {
        background-color: transparent;
    }
    .products-sale .list-product .slick-arrow svg {
        fill: #7d0f0d;
    }
}
.products-sale .list-product .slick-list {
    margin: 0 -2.25rem;
}
.products-sale .list-product .product-wrapper .product-item {
    padding: 0 2.25rem;
}
.products-sale .list-product .product-wrapper .product-item .product-info .product-name,
.products-sale .list-product .product-wrapper .product-item .product-info .product-code {
    color: #e0e2e1;
}
.products-sale .see-more {
    margin-top: 5.5rem;
    padding: 0.6rem 1.5rem 0.4rem;
    font-size: 1.635rem;
    font-weight: bold;
    background-color: #efbf1a;
    border-radius: 1.6rem;
}
.products-sale .see-more a {
    color: #781208;
}

.product-by-category {
    padding-top: 9rem;
    text-align: center;
}
.product-by-category.pd-bot {
    padding-bottom: 9rem;
}
.product-by-category .title-section {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.4;
    color: #930000;
}
.product-by-category .list-product {
    margin-top: 3.8rem;
    overflow: hidden;
}
.product-by-category .list-product .slick-list {
    margin: 0 -2.25rem;
}
.product-by-category .list-product.slider-products .slick-slide .product-wrapper {
    padding: 2.25rem;
}
.product-by-category .see-more {
    margin-top: 6rem;
    padding: 0.6rem 1.5rem 0.4rem;
    font-size: 1.635rem;
    font-weight: bold;
    background-color: #efbf1a;
    border-radius: 1.6rem;
}
.product-by-category .see-more a {
    color: #781208;
}

.news .title-section {
    display: inline-block;
    padding-bottom: 0.8rem;
    margin-bottom: 3.6rem;
    margin-top: 50px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 3.2rem;
    color: #231f20;
    border-bottom: 0.2rem solid #231f20;
}

@media (max-width: 800px) {
    .news .list-news {
        padding: 0 15px;
    }
}

.news .list-news .news-item {
    display: flex;
    flex-wrap: wrap;
}
.news .list-news .news-item:nth-child(2n) {
    direction: rtl;
}
.news .list-news .news-item:nth-child(2n) .news-content {
    direction: ltr;
    padding-left: 7rem;
    padding-right: calc(50% - 120rem / 2);
}
@media (max-width: 1200px) {
    .news .list-news .news-item:nth-child(2n) .news-content {
        padding-right: 1.5rem;
    }
}
@media (max-width: 800px) {
    .news .list-news .news-item:nth-child(2n) .news-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
@media (max-width: 800px) {
    .news .list-news .news-item {
        margin-top: 2rem;
    }
    .news .list-news .news-item .news-content {
        order: 2;
    }
    .news .list-news .news-item .news-image {
        order: 1;
    }
}
.news .list-news .news-item .news-content {
    width: 100%;
    padding: 4rem 0;
    padding-right: 7rem;
    padding-left: calc(50% - 120rem / 2);
    font-size: 1.8rem;
    background-color: #efbf1a;
    display: flex;
    align-items: center;
}
@media (min-width: 800px) {
    .news .list-news .news-item .news-content {
        width: 50%;
    }
}
@media (max-width: 1200px) {
    .news .list-news .news-item .news-content {
        padding-left: 15px;
    }
}
@media (max-width: 800px) {
    .news .list-news .news-item .news-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}
.news .list-news .news-item .news-content .box-content .news-title {
    color: #212121;
    font-weight: bold;
}

.news .list-news .news-item .news-content .box-content .news-title:hover {
  color: #930000;
}
.news .list-news .news-item .news-content .box-content .news-description {
    margin-top: 4rem;
    text-align: justify;
}
.news .list-news .news-item .news-image {
    width: 100%;
}
@media (min-width: 800px) {
    .news .list-news .news-item .news-image {
        width: 50%;
    }
}

.products-sale,
.product-by-category {
    position: relative;
}
.products-sale .list-product,
.product-by-category .list-product {
    position: unset;
}
.products-sale .list-product .slick-prev:before,
.products-sale .list-product .slick-next:before,
.product-by-category .list-product .slick-prev:before,
.product-by-category .list-product .slick-next:before {
    content: none;
}
.products-sale .list-product .slick-arrow,
.product-by-category .list-product .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    width: auto;
    padding: 2rem 0.5rem;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.368);
    z-index: 1;
}
.products-sale .list-product .slick-arrow.slick-prev,
.product-by-category .list-product .slick-arrow.slick-prev {
    left: 1.5rem;
    right: unset;
    transform: rotate(180deg) translateY(50%);
}
.products-sale .list-product .slick-arrow.slick-next,
.product-by-category .list-product .slick-arrow.slick-next {
    right: 1.5rem;
    left: unset;
}
.products-sale .list-product .slick-arrow svg,
.product-by-category .list-product .slick-arrow svg {
    height: 3rem;
    width: auto;
    fill: #fff;
    transform: scaleY(1.6);
}
@media (max-width: 1200px) {
    .products-sale .list-product .slick-arrow,
    .product-by-category .list-product .slick-arrow {
        background-color: transparent;
    }
    .products-sale .list-product .slick-arrow svg,
    .product-by-category .list-product .slick-arrow svg {
        fill: #7d0f0d;
    }
}

#about-us-page .main-content {
    padding: 12.5rem 0 3rem 0;
    margin-top: -7rem;
    background-color: #efbf1a;
}
#about-us-page .main-content .title {
    display: inline-block;
    padding-bottom: 1rem;
    border-bottom: 0.3rem solid #231f20;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
}
#about-us-page .main-content .box-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
}
#about-us-page .main-content .box-row .info {
    width: 70%;
    padding-right: 5rem;
    letter-spacing: 0.08rem;
    line-height: 1.5;
    text-align: justify;
}
@media (max-width: 767px) {
    #about-us-page .main-content .box-row .info {
        width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
}
#about-us-page .main-content .box-row .info p {
    margin-bottom: 3rem;
}
@media (max-width: 767px) {
    #about-us-page .main-content .box-row .info p {
        margin-bottom: 1rem;
    }
}
#about-us-page .main-content .box-row .info ul li {
    margin-bottom: 3rem;
}
@media (max-width: 767px) {
    #about-us-page .main-content .box-row .info ul li {
        margin-bottom: 1rem;
    }
}
#about-us-page .main-content .box-row .info .list-text span {
    padding-right: 4rem;
}
@media (max-width: 767px) {
    #about-us-page .main-content .box-row .info .list-text span {
        padding-right: 2rem;
    }
}
#about-us-page .main-content .box-row .info .text-bottom {
    padding-left: 5rem;
}
#about-us-page .main-content .box-row .item {
    width: 30%;
    padding: 5rem;
    background-color: #e0e2e1;
}
@media (max-width: 767px) {
    #about-us-page .main-content .box-row .item {
        width: 100%;
        padding: 3rem;
    }
}
#about-us-page .main-content .box-row .item .title {
    margin-bottom: 5.5rem;
    padding-bottom: 1.5rem;
}
#about-us-page .main-content .box-row .item .item-row {
    margin-bottom: 12rem;
}
@media (max-width: 767px) {
    #about-us-page .main-content .box-row .item .item-row {
        margin-bottom: 5rem;
    }
}
#about-us-page .main-content .box-row .item .item-row .item-title {
    margin-top: 2.5rem;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.07rem;
}
@media (max-width: 767px) {
    #about-us-page .main-content .box-row .item .item-row .item-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    #news-page .main-content {
        padding-bottom: 4rem;
    }
}

#news-page .box-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
#news-page .box-row .left-item {
    width: 69%;
}
@media (max-width: 767px) {
    #news-page .box-row .left-item {
        width: 100%;
    }
}
#news-page .box-row .left-item .box-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#news-page .box-row .left-item .box-item .item {
    width: calc(50% - 2rem);
    margin-bottom: 7rem;
}
@media (max-width: 767px) {
    #news-page .box-row .left-item .box-item .item {
        width: 100%;
        margin-bottom: 3rem;
    }
}
#news-page .box-row .left-item .box-item .item .item-top {
    position: relative;
}
#news-page .box-row .left-item .box-item .item .item-top .title {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #000000ab;
    color: #efbf1a;
    padding: 3.5rem 1.5rem 1rem 1.5rem;
    font-size: 1.8rem;
    text-transform: uppercase;
}
#news-page .box-row .left-item .box-item .item .item-top .title &gt; span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    line-height: 1.5;
}
#news-page .box-row .left-item .box-item .item .caption {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.8rem;
    margin-top: 2rem;
    padding: 0 2rem;
    line-height: 1.5;
    text-align: justify;
}
@media (max-width: 767px) {
    #news-page .box-row .left-item .box-item .item .caption {
        display: block;
    }
}
#news-page .box-row .right-item {
    width: 31%;
    padding-left: 3.5rem;
}
@media (max-width: 767px) {
    #news-page .box-row .right-item {
        width: 100%;
        padding-left: 0;
    }
}
#news-page .box-row .right-item .item-img {
    padding: 1rem 4rem;
    background-color: #fff;
}
#news-page .box-row .right-item .list-product {
    padding: 2rem 0 7rem 2rem;
}
@media (max-width: 991px) {
    #news-page .box-row .right-item .list-product {
        padding-bottom: 1rem;
    }
}
#news-page .box-row .right-item .list-product li {
    margin-bottom: 1.5rem;
}
#news-page .box-row .right-item .list-product li a {
    color: #231f20;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -0.02rem;
}

#contact-page .contact-section {
    padding: 9rem 0;
    background: url('../../static/images/contact-bg.png') no-repeat;
    background-size: cover;
}
#contact-page .contact-section .contact-info {
    text-align: center;
}
#contact-page .contact-section .contact-info .company-name {
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: bold;
}
#contact-page .contact-section .contact-info p {
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    font-weight: bold;
}
#contact-page .contact-section .social {
    margin-top: 3.5rem;
    text-align: center;
}
#contact-page .contact-section .social li {
    display: inline-block;
}
#contact-page .contact-section .social li img {
    width: 4.8rem;
    height: 5rem;
    object-fit: contain;
}
#contact-page .contact-section .contact-form {
    margin-top: 5rem;
    text-align: center;
}
#contact-page .contact-section .contact-form .title {
    font-size: 3rem;
    font-weight: bold;
}
#contact-page .contact-section .contact-form form {
    max-width: 47.5rem;
    margin: 4.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 0.8rem;
}
#contact-page .contact-section .contact-form form input,
#contact-page .contact-section .contact-form form textarea {
    width: calc(50% - 4px);
    padding: 1rem 2rem;
    font-size: 1.8rem;
    border: none;
    background-color: #efbf1a;
}
#contact-page .contact-section .contact-form form textarea {
    width: 100%;
    height: 15.5rem;
}
#contact-page .contact-section .contact-form form textarea:focus {
    outline: none;
}
#contact-page .contact-section .contact-form form button {
    margin-top: 1.2rem;
    width: 18.8rem;
    height: 4rem;
    font-size: 2.3rem;
    font-weight: bold;
    border-radius: 2rem;
    background-color: #efbf1a;
}

#contact-page .map {
    border-top: 1rem solid #efbf1a;
}

#product-page .list-top {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 0.3rem solid #930000;
}
@media (max-width: 991px) {
    #product-page .list-top {
        margin-top: 0;
    }
}
#product-page .list-top ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #efbf1a;
    padding: 3rem 5rem 1rem 5rem;
}
#product-page .list-top ul li {
    width: calc(26% - 2rem);
    margin-bottom: 2rem;
}
@media (max-width: 767px) {
    #product-page .list-top ul li {
        width: 100% !important;
    }
}
#product-page .list-top ul li.active a {
    color: #930000;
}
#product-page .list-top ul li a {
    font-size: 2.1rem;
    text-transform: uppercase;
    color: #231f20;
    font-weight: 700;
    transition: 0.5s;
}
#product-page .list-top ul li a:hover {
    color: #930000;
    opacity: 1;
}
@media (max-width: 1200px) {
    #product-page .list-top ul li a {
        font-size: 1.9rem;
    }
}
@media (max-width: 991px) {
    #product-page .list-top ul li a {
        font-size: 1.6rem;
    }
}
#product-page .list-top ul li:nth-child(3) {
    width: calc(21% - 2rem);
}
#product-page .list-top ul li:nth-child(6) {
    width: calc(48% - 2rem);
}

#product-page .box-row {
    display: grid;
    grid-template-columns: min-content auto;
    grid-template-rows: max-content auto;
    grid-template-areas: 'top one' 'bottom one';
    grid-gap: 2rem;
    margin: 1.5rem 0 5rem 0;
    padding-bottom: 5rem;
}
@media (max-width: 767px) {
    #product-page .box-row {
        grid-template-columns: 100%;
        grid-template-areas: 'top' 'one' 'bottom';
    }
}
#product-page .box-row .box-item {
    grid-area: top;
    margin-bottom: 2rem;
    padding: 3rem 2rem;
    background-color: #FFF;
    border-radius: 5px;
}
@media (max-width: 767px) {
    #product-page .box-row .box-item {
        padding: 2rem;
    }
}
#product-page .box-row .box-item .item-list {
    margin-bottom: 3rem;
}
@media (max-width: 767px) {
    #product-page .box-row .box-item .item-list {
        margin-bottom: 1rem;
    }
}
#product-page .box-row .box-item .item-list .title {
    margin-top: 1rem;
    color: #930000;
}
@media (max-width: 767px) {
    #product-page .box-row .box-item .item-list .title {
        margin-top: 1rem;
    }
}
@media (max-width: 767px) {
    #product-page .box-row .box-item .item-list .list-content {
        padding-top: 1rem;
    }
}
#product-page .box-row .box-item .item-list ul li {
    margin: 0 0 1rem;
}
#product-page .box-row .box-item .item-list ul li a {
    margin: 0;
    font-weight: 500;
    transition: 0.5s;
}
#product-page .box-row .box-item .item-list ul li a:hover {
    color: #930000;
}
#product-page .box-row .box-item .item-list ul li.active a {
    color: #930000;
}
#product-page .box-row &gt; .item-list {
    grid-area: bottom;
    padding: 0 2rem;
}
@media (max-width: 991px) {
    #product-page .box-row &gt; .item-list a {
        font-size: 1.5rem;
    }
}
#product-page .box-row .product-content {
    grid-area: one;
}
@media (max-width: 767px) {
    #product-page .box-row .product-content {
        width: 100%;
    }
}
#product-page .box-row .product-content .box-product {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
#product-page .box-row .product-content .box-product .product-item {
    width: calc(33.3% - (4rem / 3));
    margin-bottom: 7.5rem;
}
@media (max-width: 767px) {
    #product-page .box-row .product-content .box-product .product-item {
        width: calc(50% - 1rem);
        margin-bottom: 5rem;
    }
}
#product-page .box-row .product-content .pagination {
    text-align: center;
}
#product-page .box-row .product-content .pagination a {
    border: 2px solid #930000;
    padding: 0.5rem 1.2rem;
    border-radius: 50%;
    color: #efbf1a;
    margin: 0 0.3rem;
    font-size: 1.6rem;
    vertical-align: middle;
    transition: 0.5s;
}
#product-page .box-row .product-content .pagination a:hover {
    background-color: #930000;
}
#product-page .box-row .product-content .pagination a.active {
    background-color: #930000;
}
#product-page .box-row .product-content .pagination a.icon {
    border: 0;
}
#product-page .box-row .product-content .pagination a.icon:hover {
    background-color: transparent;
}
#product-page .box-row .product-content .pagination a.icon img {
    width: 1rem;
}

#careers-page .layout {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4.5rem;
}
#careers-page .layout .left {
    margin-top: 6rem;
    width: 27%;
}
@media (max-width: 767px) {
    #careers-page .layout .left {
        width: 100%;
        order: 2;
    }
}
#careers-page .layout .left .item {
    padding: 2rem 0 3rem 0;
    background-color: #e0e2e1;
}
@media (max-width: 767px) {
    #careers-page .layout .left .item {
        width: 100%;
        padding: 3rem;
    }
}
#careers-page .layout .left .item .title {
    display: inline-block;
    margin-bottom: 5.5rem;
    padding-bottom: 1.8rem;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    position: relative;
}
#careers-page .layout .left .item .title:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    height: 1rem;
    width: 100%;
    border-radius: 4rem;
    background-color: #efbf1a;
}
#careers-page .layout .left .item.position .title {
    margin-bottom: 0;
}
#careers-page .layout .left .item .list-position {
    margin-top: 2.4rem;
}
#careers-page .layout .left .item .list-position li {
    font-size: 2.1rem;
    font-weight: bold;
}
#careers-page .layout .left .item .list-position li.active {
    color: #930000;
}
#careers-page .layout .left .item .list-position li + li {
    margin-top: 1.6rem;
}
#careers-page .layout .left .item .item-row {
    margin-bottom: 5rem;
}
@media (max-width: 767px) {
    #careers-page .layout .left .item .item-row {
        margin-bottom: 5rem;
    }
}
#careers-page .layout .left .item .item-row .item-title {
    margin-top: 2.5rem;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.07rem;
}
@media (max-width: 767px) {
    #careers-page .layout .left .item .item-row .item-title {
        font-size: 1.8rem;
    }
}
#careers-page .layout .right {
    width: calc(73% - 4.5rem);
    background-color: #f2f4f3;
    box-shadow: 6px 6px 25px #00000075;
}
@media (max-width: 767px) {
    #careers-page .layout .right {
        width: 100%;
        order: 1;
    }
}
#careers-page .layout .right .title-careers {
    padding: 3rem;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    background-color: #efbf1a;
}
#careers-page .layout .right .content-careers {
    padding: 2.5rem;
    font-size: 1.8rem;
}

#product-deatail-page .box-row {
    display: flex;
    flex-wrap: wrap;
}
#product-deatail-page .box-row .left-item {
    width: 40%;
}
@media (max-width: 767px) {
    #product-deatail-page .box-row .left-item {
        width: 100%;
    }
}
#product-deatail-page .box-row .left-item img {
    width: 100%;
}
#product-deatail-page .box-row .right-item {
    width: 60%;
    padding-left: 8rem;
}
@media (max-width: 767px) {
    #product-deatail-page .box-row .right-item {
        width: 100%;
        padding-left: 0;
        margin-top: 3rem;
    }
}
#product-deatail-page .box-row .right-item .title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.5;
}
#product-deatail-page .box-row .right-item .code {
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #231f20;
}
#product-deatail-page .box-row .right-item .code &gt; span {
    font-weight: 700;
    color: #930000;
    text-transform: uppercase;
}

#product-deatail-page .description {
    position: relative;
    margin-top: 6.5rem;
    padding: 2rem;
    border: 0.5rem solid #959595;
}
#product-deatail-page .description::after {
    content: '';
    border: 0.3rem solid #efbf1a;
    position: absolute;
    top: -0.5rem;
    left: 0;
    width: 23rem;
    background-color: #efbf1a;
}
#product-deatail-page .description .text-bold {
    font-weight: 700;
}
#product-deatail-page .description .title {
    margin-bottom: 3.5rem;
    font-size: 2.3rem;
    font-weight: 700;
}
#product-deatail-page .description p {
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

#product-deatail-page .similar-product {
    margin: 9rem 0;
}
@media (max-width: 767px) {
    #product-deatail-page .similar-product {
        margin-bottom: 0;
    }
}
#product-deatail-page .similar-product h1 {
    font-size: 4.6rem;
    font-weight: 700;
    color: #930000;
    margin-bottom: 5rem;
}
@media (max-width: 767px) {
    #product-deatail-page .similar-product h1 {
        font-size: 4rem;
    }
}
#product-deatail-page .similar-product .product-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#product-deatail-page .similar-product .product-row .product-item {
    width: calc(25% - 4.5rem);
}
@media (max-width: 767px) {
    #product-deatail-page .similar-product .product-row .product-item {
        width: calc(50% - 2.2rem);
        margin-bottom: 5rem;
    }
}

html {
    font-size: 10px;
}
@media (max-width: 1200px) {
    html {
        font-size: 9px;
    }
}
@media (max-width: 991px) {
    html {
        font-size: 8px;
    }
}
@media (max-width: 767px) {
    html {
        font-size: 7px;
    }
}

body {
    font-family: 'SVN-Avo';
    font-weight: normal;
    font-style: normal;
    line-height: 22px;
    color: #231f20;
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    transition: 0.5s;
}
a:hover {
    opacity: 0.7;
}

button,
button:focus,
button:active,
button:hover,
button:focus-visible {
    border: none;
    outline: none;
    box-shadow: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .is-pc {
        display: none;
    }
}

.product-item {
    text-align: center;
}
.product-item .product-image {
    padding: 5px;
    background-color: #fff;
    border-radius: 0.5rem;
}
.product-item .product-image .box-image {
    position: relative;
}
.product-item .product-image .box-image::before {
    display: block;
    content: '';
    padding-bottom: 70%;
}
.product-item .product-image .box-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-item .product-info {
    margin-top: 1.5rem;
}
.product-item .product-info .product-name {
    color: #212121;
    font-size: 1.4rem;
    font-weight: bold;
}
.product-item .product-info .product-code {
    color: #212121;
    font-size: 1.4rem;
}
.product-item .see-detail {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.2rem 1.5rem 0.4rem;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: #efbf1a;
    border-radius: 1.6rem;
    color: #231f20;
}

.item-list .title {
    position: relative;
    display: inline-block;
    margin: 3rem 0 0 2rem;
    border-bottom: 3px solid #efbf1a;
    font-size: 2.1rem;
    font-weight: 700;
    padding-bottom: 1rem;
    text-transform: uppercase;
}
.item-list .title &gt; img {
    position: absolute;
    width: 1rem;
    left: -2rem;
    top: calc(50% - 1rem);
}

.item-list .list-content {
    padding: 2rem 0 0 2rem;
}
.item-list .list-content a {
    color: #231f20;
}
.item-list .list-content .name {
    margin-top: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
}
.item-list .list-content .name &gt; img {
    width: 0.5rem;
    margin-top: -1rem;
}
.item-list .list-content p {
    margin: 1.5rem 0;
    font-size: 1.8rem;
}
.item-list .list-content a {
    display: inline-block;
    margin: 1.5rem 0;
    font-size: 1.8rem;
}

.search-result {
    margin-bottom: 3rem;
    font-size: 1.8rem;
}
.search-result &gt; span {
    color: #930000;
}

.line-header {
    width: 100%;
    height: 0.3rem;
    background-color: #930000;
}
@media (max-width: 767px) {
    .line-header {
        margin-top: 0;
    }
}

.banner-welcome {
  margin-top: 100px;
}

#about-us-page .main-content .box-row .item .item-row img {
  border-radius: 5px;
  border: 5px solid #FFF;
}

#about-us-page .main-content .box-row .item .item-row a {
  color: #212121;
}

#about-us-page .main-content .box-row .item .item-row a:hover {
  color: #930000;
}

#careers-page .layout .left .item .item-row .item-title {
  color: #212121;
}

#careers-page .layout .left .item .item-row .item-title:hover {
  color: #930000;
}

#news-page {
  padding-bottom: 200px;
}

.blog-details-container {
  height: 100%;
  background: #FFF;
  padding: 20px 10px;
  border-radius: 5px;
}

.blog-details-title {
  color: #930000;
  font-size: 2rem;
  line-height: 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.02rem;
}

.blog-details-img {
  margin-top: 30px;
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
  float: left;
}

.blog-details-content {
  color: #212121;
  font-size: 17px;
  line-height: 25px;
  margin-top: 25px;
}

.list-related {
  list-style: none;
  margin-top: 10px;
  position: relative;
  float: left;
}

.list-related li {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  float: left;
}

.list-related li img {
  border-radius: 5px;
  padding: 5px;
  background: white;
}

.list-related li a {
  color: #212121;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  margin-top: 5px;
  position: relative;
  float: left;
}

.list-related li a:hover {
  color: #930000;
}

#product-page {
  padding-bottom: 10px;
}

#product-deatail-page {
  padding-bottom: 100px;
}

#careers-page .content-careers {
  padding-bottom: 100px !important;
}

.subMenu {
  margin-left: 30px;
  margin-top: 10px;
  display: none;
}

.menu-active {
  color: #930000 !important;
}
</pre></body></html>