@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); :root {
    --trang: #fff;
    --green: #046330;
    --vang: #ffe118;
    --gray-gray-50: #fcfcfc;
    --gray-gray-100: #f1f1f1;
    --gray-gray-200: #e0e0e0;
    --gray-gray-300: #c8c8c8;
    --gray-gray-400: #a8a8a8;
    --gray-gray-500: #828282;
    --gray-gray-600: #555;
    --gray-gray-700: #212121;
    --gray-gray-800: #0f0f0f;
    --gray-gray-900: #040404;
    --gray-gray-950: #000;
    --cl-main: #046330;
    --cl-hover: #046330;
    --cl-text: #333;
    --font-family: "SVN-Gilroy",sans-serif;
    --second-family: "SVN-VT Redzone Classic",sans-serif
}

@font-face {
    font-family: 'SVN-Gilroy';
    src: url("../fonts/SVN-Gilroy-Regular.otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SVN-Gilroy';
    src: url("../fonts/SVN-Gilroy-Bold.otf");
    font-weight: bold;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'SVN-VT Redzone Classic';
    src: url("../fonts/SVN-VT-Redzone-Classic.otf");
    font-weight: normal;
    font-style: normal;
    font-display: swap
}

.news-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.news-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.scale-img {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.news-item__pic {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #f5f5f5;
}

.news-item__pic img, 
.news-item__pic picture, 
.news-item__pic .w-100 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-item:hover .news-item__pic img {
    transform: scale(1.06);
}

.news-item__pic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.02));
    pointer-events: none;
}

.news-item__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-item__user img,
.news-item__time img {
    transition: transform 0.3s ease;
}

.news-item:hover .news-item__user img { 
    transform: translateX(-1px); 
}

.news-item:hover .news-item__time img { 
    transform: rotate(15deg); 
}

.news-item__name {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.news-item:hover .news-item__name {
    color: #a80003;
}

.news-item__desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.news-item__next {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #a80003;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-item__next span {
    position: relative;
}

.news-item__next span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #a80003;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-item:hover .news-item__next span::after {
    width: 100%;
}

.news-item__next svg {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-item:hover .news-item__next svg {
    transform: translateX(6px);
}

.albumHome2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 15px;
}

.albumHome2Item {
    position: relative;
    display: block;
    aspect-ratio: 389 / 392;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #f8f9fa;
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.albumHome2Item picture,
.albumHome2Item img,
.albumHome2Item .d-block {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.albumHome2Item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.albumHome2Item::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.albumHome2Item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.albumHome2Item:hover picture,
.albumHome2Item:hover img,
.albumHome2Item:hover .d-block {
    transform: scale(1.08);
}

.albumHome2Item:hover::before {
    opacity: 1;
}

.albumHome2Item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

[class^="line-clamp-"] {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
}

.line-clamp-6 {
    -webkit-line-clamp: 6;
}

.line-clamp-7 {
    -webkit-line-clamp: 7;
}

.line-clamp-8 {
    -webkit-line-clamp: 8;
}

.line-clamp-9 {
    -webkit-line-clamp: 9;
}

.line-clamp-10 {
    -webkit-line-clamp: 10;
}

body {
    font-size: 14px;
    color: var(--cl-text);
    font-family: var(--font-family)!important;
    font-weight: 400;
    top: 0!important;
    max-width: 1920px;
    min-width: 320px;
    position: relative;
    margin: auto
}

[x-cloak] {
    display: none!important
}

h1,h2,h3,h4,h5,h6 {
    line-height: 1.5
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%)
}

::-webkit-scrollbar-thumb {
    background: var(--cl-main)
}

img {
    max-width: 100%;
    height: auto!important;
    vertical-align: top;
    display: inline-block
}

* {
    box-sizing: border-box
}

.chiNhanhColName {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chiNhanhColName a {
    border-radius: 8px;
    padding: 12px;
    min-width: 150px;
    height: 48px;
    background: var(--vang);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: var(--green);
}

.chiNhanhColName h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    color: #fff;
}

.chiNhanhColInner {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.chiNhanhColInner iframe {
    width: 100%;
    display: block;
    height: 467px;
}

.chiNhanhCol {
    min-width: 100%;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(180deg, #046330 0%, #1c9454 100%);
    padding: 10px;
}

.chiNhanhRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.chiNhanhHome {
    padding: 50px 0px;
    background: #fff url(../images/16.png) 0 0 no-repeat;
    background-size: cover;
}

.support__footer {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.support__footer a {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
    text-transform: capitalize;
    color: var(--vang);
    background: url(../images/15.png) left center no-repeat;
    padding-left: 35px;
}

.support__footer a span {
    font-size: 18px;
}

.socialMxh {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-article .wrap-content {
    display: grid;
    grid-template-columns: 440px 360px 170px;
    justify-content: space-between;
    align-items: flex-start;
}

.tintucHomeCol {
    min-width: 100%;
    width: 100%;
}

.tintucHomeRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.tintucHome {
    padding: 50px 0px;
}

.form-groupbutton {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-groupbutton .form-group {
    margin: 0;
    min-width: 100%;
    width: 100%;
}

.form-groupbutton .form-group:nth-child(1),.form-groupbutton .form-group:nth-child(4) {
    grid-column: span 2;
}

.newsletterColContactContent {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: var(--gray-gray-700);
    margin-top: 1rem;
}

.newsletterColContactContent p:last-child {
    margin: 0;
}

.newsletterColContactName {
    display: block;
    text-align: center;
    background: url(../images/10.png) top center no-repeat;
    padding-top: 6rem;
}

.newsletterColContactName strong {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: var(--green);
}

.newsletterColContactName span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: var(--green);
}

.newsletterColContact {
    border-radius: 16px;
    width: 100%;
    height: 394px;
    background: linear-gradient(180deg,#fff 0%,#ffe018 100%);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newsletterCol {
    min-width: 100%;
    width: 100%;
}

.newsletterCol .listProName h2,.newsletterCol .listProName span {
    color: #fff;
}

.newsletterRow {
    display: grid;
    grid-template-columns: 1fr 301px;
    gap: 79px;
}

.albumHomeItem {
    border-radius: 12px;
    overflow: hidden;
    height: 210px;
}

.albumHomeItem:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.albumHomeItem:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 1 / 3;
}

.albumHomeItem:nth-child(1),.albumHomeItem:nth-child(3) {
    height: 100%;
}

.albumHomeItem:nth-child(2) {
    grid-column: span 2;
    grid-row: 1 / 2;
}

.albumHomeItem:nth-child(6) {
    grid-column: span 2;
    grid-row: 2 / 4;
    height: 100%;
}

.albumHomeItem:nth-child(7) {
    grid-column: span 2;
}

.albumHomeItem picture,.albumHomeItem img {
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
    position: relative;
    display: block;
}

.albumHomeGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 3rem;
}

.albumHome {
    padding: 50px 0px;
    background: url(../images/9.png) 0 0 no-repeat;
    background-size: cover;
}

.grid-product {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.listProductMenuTabLink a.active {
    background: var(--green);
    color: var(--vang);
}

.listProductMenuTabLink a {
    border: 1px solid var(--gray-gray-400);
    border-radius: 12px;
    padding: 10px 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 15px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: var(--gray-gray-700);
    display: block;
}

.listProductMenuTab {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    align-items: flex-start;
}

.listProductMenuTab {
    margin-bottom: 2rem;
}

.listProName {
    text-align: center;
    margin-bottom: 1rem;
    background: url(../images/8.png) top center no-repeat;
    padding-top: 25px;
}

.listProName h2 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 36px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: var(--green);
}

.tieuChiItem {
    width: 100%;
    height: 326px;
    background: url(../images/7.png) 0 0 no-repeat;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tieuChiItem h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: var(--gray-gray-700);
    margin-bottom: 5px;
}

.tieuChiItem picture {
    margin: 0 auto;
    display: block;
    max-width: 78px;
    margin-bottom: 1rem;
    border-radius: 100%;
    overflow: hidden;
}

.tieuChiItem p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    text-align: center;
    color: var(--gray-gray-700);
}

.tieuChiOwl {
    max-width: 942px;
    margin: auto;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    margin-top: -15rem;
}

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

.aboutHomeNameMore a {
    border-radius: 12px;
    padding: 0px 22px;
    min-width: 240px;
    height: 52px;
    background: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--vang);
}

.aboutHomeName3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: var(--gray-gray-700);
    margin-bottom: 2rem;
}

.aboutHomeName2 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 54px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: var(--green);
    -webkit-text-stroke: 1px var(--vang);
}

.aboutHome {
    text-align: center;
}

.aboutHomeName {
    border: 1px solid var(--vang);
    border-radius: 50px;
    padding: 10px;
    width: 149px;
    height: 40px;
    background: #fffbdf;
    text-align: center;
    text-transform: uppercase;
    margin: auto;
}

.splide.slideshow {
    visibility: visible;
}

.slide-wrap {
    position: relative;
    z-index: 1;
    margin-top: -163px;
}

.menu {
    position: relative;
    background: linear-gradient(180deg,#046330 0%,rgba(4,99,48,0) 100%);
    height: 163px;
    z-index: 2;
    margin-bottom: -163px;
}

.menu.inside {
    height: auto;
    background: var(--green);
    margin: 0;
}

.menu.menu_fix {
    height: auto;
    background: var(--green);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.support__header {
    display: flex;
    align-items: center;
    gap: 65px;
}

.support__header a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 130%;
    text-transform: capitalize;
    color: var(--gray-gray-700);
    background: url(../images/3.png) left center no-repeat;
    padding-left: 55px;
}

.support__header strong {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: #c00;
}

a {
    text-decoration: none!important
}

a.tintucHomeItem {
    display: block;
    text-align: left;
}

a.tintucHomeItem.custom {
    display: grid;
    grid-template-columns: 228px 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 24px;
}

a.tintucHomeItem.custom p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: var(--gray-gray-600);
}

a.tintucHomeItem.custom h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 17px;
    line-height: 150%;
    text-transform: capitalize;
    color: #002511;
    margin: 0;
    margin-bottom: 5px;
}

a.tintucHomeItem h3 {
    margin-top: 1rem;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    text-transform: capitalize;
    color: #002511;
    margin-bottom: 5px;
}

a.tintucHomeItem p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--gray-gray-700);
}

a.tintucHomeItem picture {
    border-radius: 16px;
    display: block;
    overflow: hidden;
}

.h-card,.hidden-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0
}

.scale-img {
    overflow: hidden
}

.scale-img img {
    transition: all .3s
}

.scale-img:hover img.w-100 {
    transform: scale(1.2,1.2)
}

.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3
}

.transition {
    transition: .3s all
}

.swiper-wrapper {
    width: inherit;
    height: inherit;
    .swiper-initialized & {
        margin: 0;
        width: 100%;
        height: 100%;
        .swiper-slide {
            padding: 0;
            margin: 0px;
            overflow: hidden
        }
    }
}

.share {
    padding: 17px 10px 10px 10px;
    line-height: normal;
    background: rgba(128,128,128,.15);
    margin-top: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px
}

.pagination {
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.pagination li a,.pagination li span {
    cursor: pointer;
    border-radius: 5px!important;
    border: 1px solid #cacaca;
    background: #ffff;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d4d4d;
    font-size: 14px;
    padding: 5px
}

.pagination li a:hover {
    color: var(--cl-main);
    border-color: var(--cl-main)
}

.pagination .page-item.active .page-link {
    background: var(--green);
    border-color: var(--green);
    color: #fff
}

.wrap-main {
    margin: 30px 0
}

.wrap-content {
    max-width: 1200px;
    padding: 0px;
    margin: 0 auto;
    position: relative
}

.social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0 10px
}

.social li {
    display: inline-block
}

.social li:hover img {
    transform: rotateY(360deg);
    transition: all .5s linear
}

.header__top {
    background: var(--green);
    color: #fff;
    padding: 5px 0px;
    position: relative;
    z-index: 999;
    overflow: hidden;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    .flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
    }

    svg {
        display: inline-block;
        margin-right: 5px
    }

    .address {
    }

    .hotline {
    }

    .contact {
        margin-left: 50px
    }
}

.header__top-flex {
    display: flex;
    justify-content: space-between;
    gap: 15px
}

.header__top-info {
    display: flex;
    align-items: center;
    gap: 5px
}

.header__info-icon {
    width: 20px
}

.header__info-text {
    font-weight: 500
}

.socialh li a {
    display: block;
    max-width: 35px
}

.header__bottom {
    position: relative;
    top: 0;
    z-index: 998;
    padding: 10px 0;
    min-width: 320px;
    background: #fff
}

.header__bottom-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    ul {
        min-width: 540px;
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        >li {
            flex: auto
        }

        .li-contact {
        }

        .li-contact:before {
        }

        .li-contact a {
        }

        li {
            position: relative;
            a {
                font-size: 16px;
                color: #333333;
                text-transform: uppercase;
                display: block;
                padding: 10px 0px;
                font-weight: 700;
                &.active,&:hover {
                    color: var(--cl-main)
                }
            }

            ul {
                display: block;
                position: relative;
                top: calc(100% + 10px);
                opacity: 1;
                visibility: inherit;
                transition: .3s;
                background-color: #fff;
                box-shadow: 1px 1px 15px rgba(0,0,0,.15);
                min-width: auto;
                z-index: 666;
                li a {
                    padding: 8px 10px
                }
            }

            &:hover>ul {
                opacity: 1;
                visibility: visible;
                top: 100%
            }
        }
    }
}

.header__bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px
}

.header__logo {
    max-width: 245px
}

.notify-phone {
    animation: notifyPhone 1s infinite ease-in-out
}

.search-inline {
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 230px;
    border-radius: 5px;
    border: 1px solid #bababa;
    background: #fff
}

.search-inline p {
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
    margin: 0;
    color: var(--cl-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px
}

.search-inline input {
    width: calc(100% - 30px);
    height: 30px;
    outline: 0;
    padding: 0;
    border: 0;
    background: 0;
    text-indent: 12px;
    font-size: 14px
}

.search-inline input::-webkit-input-placeholder {
    color: #7d7d7d
}

.search-inline input:-moz-placeholder {
    color: #7d7d7d
}

.search-inline input::-moz-placeholder {
    color: #7d7d7d
}

.search-inline input:-ms-input-placeholder {
    color: #7d7d7d
}

.header__lang {
    position: relative;
    z-index: 101
}

.header__lang-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: clamp(12px,calc(120 / 1200 * 100vw),120px);
    background: #dae1e7;
    backdrop-filter: blur(8px);
    padding: 10px
}

.header__lang-flag {
    max-width: 35px;
    border-radius: 3px;
    overflow: hidden
}

.header__lang-country {
    font-weight: 700;
    font-size: clamp(13px,calc(14 / 1200 * 100vw),14px)
}

.header__lang-box {
    position: absolute;
    right: 0;
    margin-top: 10px;
    background: #fff;
    box-shadow: rgba(0,0,0,.35) 0 5px 15px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 150px
}

.header__lang-picker {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer
}

.header__lang-icon {
    display: inline-block;
    width: 25px
}

.header__lang-name {
    font-size: clamp(13px,calc(14 / 1200 * 100vw),14px);
    font-weight: 500;
    flex: 1 1 0%
}

.header__lang-picker:hover .header__lang-name {
    color: orange
}

#google_translate_element {
    clear: both;
    width: auto!important;
    text-align: right;
    display: none
}

.skiptranslate {
    display: none!important
}

.menu-res {
    display: none
}

.menu ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none
}

.menu ul li {
    position: relative
}

li.line {
    width: 1px;
    height: 28px;
    background: #FFF;
}

.menu ul.menu-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.menu ul li a {
    color: #ffffff;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    text-transform: uppercase;
    text-align: center;
    display: block;
    padding: 20px 30px;
}

.menu ul li a.active,.menu ul li:hover>a {
    color: var(--vang);
}

.menu.menu_fix ul li a {
    padding: 10px 25px;
}

.menu_dmsp .menu_lvl {
    position: absolute;
    width: 250px;
    top: calc(100% + 10px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    background-color: var(--green);
    box-shadow: 1px 1px 15px rgba(0,0,0,.15)
}

.menu_dmsp .menu_lvl3,.menu_dmsp .menu_lvl4 {
    left: calc(100% + 1px)
}

.menu_dmsp .menu_lvl2 .menu_lvl3 ul li:hover .menu_lvl4,.menu_dmsp .menu_lvl2 ul li:hover .menu_lvl3,.menu_dmsp:not(.block_hover):hover .menu_lvl2 {
    opacity: 1;
    visibility: visible;
    top: 100%
}

.slideshow_left .menu_lvl2 {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    margin-top: 0
}

.menu_vlist_pic {
    max-width: 24px
}

.menu_dmsp .menu_lvl ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: capitalize;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    font-weight: 500;
    padding: 6px 10px;
    margin: 0;
    height: auto
}

.menu_dmsp .menu_lvl ul li:hover>a {
    color: var(--vang);
}

.menu ul li ul li a:after {
    display: none!important
}

.spacer {
    margin: clamp(30px,calc(60 / 1200 * 100vw),60px) 0
}

.title-main {
    text-align: center;
    margin-bottom: 28px;
    background: url(../images/tieude.png) no-repeat center bottom;
    padding-bottom: 25px;
    h1,h2 {
        font-size: 2rem;
        color: #000;
        text-transform: capitalize;
        font-weight: bold;
        line-height: 1;
    }

    .name-cty {
        color: #EB1551;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px
    }

    .slogan {
        font-size: 15px;
        max-width: 586px;
        margin: auto
    }
}

.title-main-2 {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: .5rem;
    background: url(../images/after_title_2.webp) no-repeat center bottom;
    h1,h2 {
        font-size: 36px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase
    }
}

.title-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    isolation: isolate;
    position: relative;
    &:after {
        content: '';
        position: absolute;
        left: 20px;
        right: 0;
        bottom: 0;
        border-bottom: 1px dashed var(--cl-main)
    }

    .title {
        position: relative;
        filter: drop-shadow(0px 4px 4px rgba(0,0,0,0.05));
        &:before {
            content: '';
            position: absolute;
            left: 1rem;
            right: 2rem;
            top: -8px;
            bottom: 18px;
            border-radius: 5px 10px 5px 5px;
            border: 1px solid var(--cl-main);
            z-index: -1
        }

        &:after {
            content: '';
            position: absolute;
            left: 10px;
            bottom: 0;
            width: 50px;
            height: 50px;
            background: url(../images/before_title_pro.webp) no-repeat center/cover
        }

        h2 {
            margin-bottom: 0;
            font-size: 22px;
            font-weight: 700;
            color: var(--cl-main);
            text-transform: capitalize;
            padding: 7px 56px 7px 68px;
            background-color: #fff;
            background: #ffffff;
            margin-bottom: 10px;
            clip-path: polygon(0 0,100% 0%,calc(100% - 24px) 100%,0% 100%)
        }
    }

    a {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        font-weight: 500;
        color: #5c5c5c;
        text-transform: capitalize;
        margin-bottom: 8px;
        &:hover {
            color: var(--cl-main);
            svg path {
                fill: var(--cl-main)
            }
        }
    }
}

.title-detail {
    margin-bottom: 20px
}

.title-detail h1 {
    font-size: clamp(22px,calc(30/1200*100vw),30px);
    font-weight: 700;
    color: var(--cl-main);
    margin-bottom: 0
}

.search-popup {
    position: relative
}

.search-popup .icon-search {
    width: 45px;
    height: 45px;
    border-radius: 45px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: var(--green);
}

.search-popup .icon-search.active {
    background: #fff;
    color: var(--cl-main);
    border: solid 1px var(--cl-main)
}

.search-popup .search-grid {
    border-radius: 50px;
    padding: 0px 16px;
    width: 346px;
    height: 38px;
    background: var(--gray-gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-popup .search-grid p {
    width: 35px;
    height: 35px;
    cursor: pointer;
    outline: 0;
    border: none;
    margin: 0;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    order: 2;
}

.search-popup .search-grid input {
    width: calc(100% - 35px);
    float: right;
    line-height: 35px;
    outline: 0;
    border: none;
    color: #333;
    font-size: 14px
}

.search-popup .search-grid input::placeholder {
    color: #ccc
}

.product-item a {
    display: block;
    position: relative;
    padding: 7px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding-bottom: 1.5rem;
}

.product-item__pic {
    border-radius: 8px;
    overflow: hidden
}

.product-item__info {
    text-align: center;
    margin-top: 20px
}

.product-item__name {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 150%;
    text-transform: uppercase;
    text-align: center;
    color: var(--gray-gray-700);
    margin-bottom: 1rem;
}

.product-item a:hover .product-item__name {
    color: var(--green)
}

.product-item__price--new {
    border-radius: 50px;
    padding: 10px 20px;
    background: var(--vang);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    text-transform: capitalize;
    text-align: center;
    color: var(--gray-gray-700);
    display: inline-block;
}

.product-item__price--old {
    margin: 0 8px;
    font-size: clamp(12px,calc(13/1200*100vw),13px);
    color: #6c757d;
    text-decoration: line-through
}

.product-item__price--per {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--cl-main);
    font-size: 11px;
    border-radius: 20px;
    padding: 3px 10px;
    gap: 5px
}

.splide.procategory:not(.is-overflow) .splide__list {
    justify-content: center
}

.notify-phone {
    animation: notifyPhone 1s infinite ease-in-out
}

@keyframes notifyPhone {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

.category-nav {
    margin-bottom: 30px
}

.category-nav__item {
    font-size: clamp(14px,calc(16 / 1200 * 100vw),16px);
    text-transform: uppercase;
    color: inherit;
    display: inline-block;
    vertical-align: top;
    padding-block:7px;padding-inline:clamp(10px,calc(20 / 1200 * 100vw),20px);transition: .2s;
    border: 1px solid #1a1918;
    background-color: #fff
}

.category-nav__item.active {
    background: #1a1918;
    color: #fff
}

.main-widget {
    position: fixed;
    right: 14px;
    bottom: 20px;
    z-index: 99;
    top: auto!important
}

@media (max-width: 767px) {
    .main-widget {
        bottom:85px
    }
}

.main-widge .img svg {
    width: 100%;
    height: 100%
}

.main-widget .img {
    width: 25px;
    height: 25px
}

.main-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin-bottom: 5px
}

.main-icon p {
    font-size: 10px;
    color: #fff;
    margin: 0
}

.out-circle {
    overflow: hidden;
    padding: 17px;
    border-radius: 100%;
    background: var(--cl-main);
    width: 60px;
    height: 60px
}

.main-icon {
    line-height: 0;
    color: #fff;
    width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center
}

.main-icon i {
    width: 26px;
    height: 26px;
    transform: translateX(2px)
}

.ser-icon {
    display: inline-flex;
    position: absolute;
    font-size: 30px;
    top: 0;
    left: 0;
    padding: 10%;
    background: #fff;
    max-width: 100%;
    overflow: hidden;
    border-radius: 100%;
    color: var(--cl-main);
    width: 70%;
    height: 70%;
    margin: 15%;
    transition: .2s all
}

.unsee {
    opacity: 0;
    transform: scale(0)
}

.process {
    display: inline-flex;
    transform: translateX(0);
    transition: .15s linear transform;
    line-height: 0
}

.ser-icon .item {
    margin-right: 40px;
    width: 30px;
    height: 30px;
    color: var(--cl-main);
    display: flex;
    justify-content: center;
    align-items: center
}

.ser-icon .item svg {
    width: 25px;
    height: 25px;
    color: var(--cl-main)
}

.ser-icon i:nth-child(2n) {
    color: #000
}

.def-content {
    position: absolute;
    bottom: 62px;
    right: 0;
    background: #fff;
    border-radius: 8px;
    transition: .2s all;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    width: 300px;
    z-index: 1
}

.def-content:before {
    position: absolute;
    bottom: -8px;
    right: 22px;
    left: auto;
    display: inline-block!important;
    border-right: 8px solid transparent;
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
    content: ''
}

.def-content .def-header {
    background: var(--cl-main);
    padding: 10px;
    border-radius: 8px 8px 0 0;
    color: #fff;
    position: relative;
    font-size: 16px;
    font-weight: 700
}

.def-content .def-header .close-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 10px;
    left: initial;
    padding: 0;
    margin: 0;
    border: 0 none;
    background: 0 0;
    line-height: 1;
    width: 26px;
    height: 26px;
    cursor: pointer;
    color: #fff;
    background: var(--cl-main);
    border-radius: 50%;
    text-align: center
}

.def-content .item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 10px;
    transition: .3s linear all
}

.def-content .item>a .img {
    flex-grow: 0;
    flex: none;
    height: 34px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    border-radius: 50%;
    color: #fff!important
}

.def-content .item>a .img svg {
    height: 20px;
    width: 20px
}

.def-content .item>a .detail {
    flex-grow: 1;
    line-height: normal
}

.def-content .item>a .detail .arcu-item-title {
    font-weight: 700;
    font-size: 15px;
    display: block;
    line-height: normal;
    color: #000
}

.def-content .item>a .detail .arcu-item-subtitle {
    font-size: 14px;
    color: #787878
}

.def-content .item.phone>a .img {
    background: #4eb625
}

.def-content .item.mess>a .img {
    background: #31adff
}

.def-content .item.zalo>a .img {
    background: #0165f8
}

.def-content .item.map>a .img {
    background: #d94234
}

.def-content .item:last-child {
    margin-bottom: 0
}

.main-widget .close-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-size: 25px;
    top: 0;
    padding: 10px;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 1;
    text-align: center;
    color: #fff;
    background: var(--cl-main);
    border-radius: 100%;
    transition: .2s all;
    transform: rotate(0);
    cursor: pointer
}

.main-widget .close-icon svg {
    width: 25px;
    height: 25px
}

.close-icon.unsee {
    transform: rotate(180deg)
}

.pregan {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #e53b16;
    z-index: -2;
    border-radius: 100%;
    opacity: .6;
    animation: zoomzoom 3s linear .2s infinite
}

.pregan:nth-child(1) {
    animation-delay: .5s
}

.main-widget .item svg {
    fill: var(--cl-main)
}

.def-content .item svg {
    fill: #fff
}

.def-content .item:hover {
    background: #f1f1f1
}

.scrollToTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 98;
    top: auto;
    width: 40px;
    height: 40px;
    display: flex;
    background: 0 0;
    text-decoration: none;
    transition: all .3s ease-out 0s;
    transform: translateY(-20px);
    background-color: color-mix(in srgb,var(--cl-main) 10%,#fff);
    border-radius: 7px;
    cursor: pointer
}

@media (max-width: 870px) {
    .scrollToTop {
        bottom:140px
    }
}

.scrollToTop svg {
    width: 100%;
    height: 100%;
    transform: rotate(270deg)
}

.scrollToTop svg path {
    stroke: var(--cl-main)
}

.scrollToTop:hover {
    background: var(--cl-main)
}

.scrollToTop:hover svg path {
    stroke: color-mix(in srgb,var(--cl-main) 10%,#fff)
}

.news-item a {
    display: block;
    position: relative;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 15px;
    overflow: hidden
}

.news-item__pic {
    position: relative;
    isolation: isolate;
    overflow: hidden
}

.news-item__date {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--cl-main);
    padding: 5px;
    border-radius: 10px 0 10px 0;
    color: #fff;
    font-size: 12px;
    font-weight: 600
}

.news-item__info {
    padding: 20px
}

.news-item__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cl-text);
    line-height: 1.5;
}

.news-item a:hover .news-item__name {
    color: var(--cl-main)
}

.news-item__desc {
    font-size: 15px;
    color: #5c5c5c;
    line-height: 24px;
    margin-bottom: 1rem
}

.news-item__next {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--cl-main);
    transition: .3s ease-in-out
}

.news-item a:hover .news-item__next {
    gap: 16px
}

.album-item {
    border-radius: 10px;
    overflow: hidden
}

.splide__arrow {
    background: color-mix(in srgb,var(--cl-main) 10%,#fff)!important;
    opacity: 1!important;
    border-radius: 5px!important;
    transition: .2s;
    width: 35px!important;
    height: 35px!important
}

.splide__arrow--prev {
    left: -30px
}

.splide__arrow--next {
    right: -30px
}

.splide__arrow svg {
    fill: var(--cl-main)!important;
    width: 24px;
    height: 24px;
    transition: .2s
}

.splide__arrow:hover {
    background: var(--cl-main)!important
}

.splide__arrow:hover svg {
    fill: color-mix(in srgb,var(--cl-main) 10%,#fff)!important
}

#branch {
    overflow: hidden;
    border-radius: 15px
}

#branch iframe {
    display: block;
    width: 100%;
    height: 330px
}

.footer-wrap {
    overflow: hidden;
    padding: 50px 0px;
    position: relative;
    background: url(../images/14.png) 0 0 no-repeat;
    color: #fff;
    background-size: cover;
    .icon1 {
        top: 5%;
        left: 0%;
        width: 200px;
        height: 272px;
        animation: cloudMove 6s ease-in-out infinite
    }

    .footer-ul {
        padding: 0;
        list-style: none;
        margin: 1rem 0 0;
    }

    .footer-ul li {
        margin-bottom: 10px
    }

    .footer-ul li a {
        color: #fff;
        font-size: 15px;
        display: block;
        &:hover {
            color: var(--vang);
        }
    }
}

.wap-mxh {
    display: flex;
    margin-right: 20px;
    gap: 10px;
    flex-wrap: wrap
}

.footer-news:nth-child(1) .footer-title {
    background: none;
    padding: 0;
    color: var(--cl-main)
}

.footer-news:nth-child(1) .footer-title p {
    font-size: clamp(30px,calc(45 / 1200 * 100vw),45px);
    color: #fff
}

.footer-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-transform: uppercase;
    color: var(--vang);
    margin-bottom: 10px;
    
    
    
    
    p {
        font-size: 24px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 0
    }

    span {
        font-size: 36px;
        font-weight: 900;
        text-transform: uppercase;
        display: none
    }
}

.footer-powered {
    margin-top: 50px;
    background: var(--cl-main)
}

.footer-copyright {
    font-family: var(--font-family);
font-weight: 400;
font-size: 15px;
line-height: 1.5;
color: var(--trang);
    text-align: left;
    margin: 1rem 0;
}

#footer-map {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 9px;
    margin: 0;
    background: rgb(204 204 204 / 28%);
    border-radius: 10px;
    border: 1px solid var(--cl-hover);
    backdrop-filter: blur(8px);
    .map-inner {
        height: 255px;
        width: 100%;
        border-radius: 10px;
        position: relative;
        overflow: hidden
    }

    iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 593px
    }
}

#footer-map:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 7%;
    z-index: 4
}

.form-group,.form-group-select {
    position: relative;
    margin-bottom: 15px
}

.form-group input,.form-group textarea {
    width: 100%;
    font-size: 14px;
    transition: .1s ease;
    resize: vertical;
    background: #fff!important;
    box-shadow: none!important;
    border-radius: 5px;
    border: 1px solid #cacaca
}

.form-group.novalidate input,.form-group.novalidate textarea {
    border: 1px solid #e2e2e2!important
}

.form-group input {
    height: 45px
}

.form-group input.date-picker {
    padding-right: 35px
}

.form-group input:hover,.form-group textarea:hover {
    border-color: #7799d0!important
}

.form-group label,.form-group-select>label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 14px;
    color: #777;
    transition: .1s ease;
    pointer-events: none;
    background-color: transparent;
    margin: 0;
    line-height: 1.5
}

.form-group>span {
    position: absolute;
    right: 12px;
    top: 12px;
    transition: .1s ease;
    pointer-events: none;
    display: inline-block;
    max-width: 20px
}

.form-group input:focus,.form-group textarea:focus {
    border-color: var(--main-color);
    outline: 0
}

.form-group input:focus+label,.form-group input:not(:placeholder-shown)+label,.form-group textarea:focus+label,.form-group textarea:not(:placeholder-shown)+label,.form-group-select>label {
    top: -10px;
    font-size: 12px;
    background: #fff;
    padding: 0 5px;
    left: 8px;
    transform: none
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin-bottom: 0
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.custom-file-label::after {
    content: attr(title);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + .75rem);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0
}

.modal {
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.7)
}

.modal-header {
    border-bottom: 1px solid #d1d5db;
    background: rgba(249,250,251,.6)
}

.modal-title {
    font-weight: 600;
    letter-spacing: .05em;
    color: #111827
}

.modal-footer {
    border-top: 1px solid #d1d5db;
    background: rgba(249,250,251,.6)
}

.modal-btn--close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 14px;
    color: #fff;
    background: red;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
    overflow: hidden;
    border-radius: 50%
}

.invalid-feedback {
    font-size: 13px
}

.form-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.form-btn--submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cl-main);
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: clamp(14px,calc(16/1200*100vw),16px)
}

.breadCrumbs {
    background: color-mix(in srgb,var(--cl-main) 10%,#fff);
    margin-bottom: 30px
}

.breadcrumb {
    gap: 10px;
    padding: 10px 0!important
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 15px
}

.breadcrumb li a {
    flex: 1 1 0%;
    color: #666;
    transition: .2s
}

.breadcrumb li a:hover {
    color: var(--cl-main)
}

.breadcrumb li.active a {
    font-weight: 500;
    color: var(--cl-main)
}

.breadcrumb li svg {
    width: 7px;
    color: #666;
    margin-top: 2px
}

.box-toc {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)
}

.box-toc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #f8fafc;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    user-select: none
}

.box-toc__header:hover {
    background: #f1f5f9
}

.box-toc__title {
    font-weight: 700;
    font-size: 16px;
    color: var(--cl-text);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px
}

.box-toc__title i {
    font-size: 20px
}

.box-toc__toggle-icon {
    color: #64748b
}

.box-toc__body {
    max-height: 0;
    overflow: hidden
}

.box-toc--open .box-toc__body {
    max-height: 1000px;
    border-top: 1px solid #e2e8f0
}

.box-toc--open .box-toc__toggle-icon {
    transform: rotate(180deg)
}

.box-toc__list {
    list-style: none;
    padding: 12px 0;
    margin: 0
}

.box-toc__item {
    margin: 0;
    position: relative
}

.box-toc__link {
    display: block;
    padding: 8px 20px;
    color: #64748b;
    text-decoration: none;
    font-size: .95rem;
    line-height: 1.5;
    border-left: 3px solid transparent
}

.box-toc__link:hover {
    color: var(--cl-main)!important;
    background: #eff6ff!important
}

.box-toc__link--active {
    color: var(--cl-main);
    font-weight: 600;
    background: #eff6ff;
    border-left-color: var(--cl-main)
}

.box-toc__item--h2 .box-toc__link {
    padding-left: 10px;
    font-weight: 600;
    color: #334155;
    font-size: 15px
}

.box-toc__item--h3 .box-toc__link {
    padding-left: 20px;
    font-size: 14px
}

.box-toc__item--h4 .box-toc__link {
    padding-left: 30px;
    font-size: 13px;
    font-style: italic
}

.content-main {
    margin: 1rem 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    color: var(--trắng);
}

.content-main h1 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 30px
}

.content-main h2 {
    margin: 20px 0;
    font-size: 19px
}

.content-main h3 {
    margin: 15px 0 20px;
    font-size: 17px
}

.content-main h4 {
    margin: 10px 0 20px;
    font-size: 15px
}

.content-main table {
    width: 100%;
    margin: 10px 0 20px;
    font-size: 13px
}

.content-main table th {
    background: #444;
    color: #fff;
    text-align: center;
    padding: 12px 7px
}

.content-main table tr td {
    padding: 10px 7px
}

.content-main tr:nth-child(even) {
    background: #f4f4f4
}

.content-main tr:nth-child(odd) {
    background: #fff
}

.content-main ol li,.content-main ul li {
    margin-bottom: 10px
}

.content-main a {
    color: #05f;
    font-weight: 700;
    display: contents
}

.content-main iframe {
    width: 100%!important;
    display: block;
    margin: 10px auto 20px
}

.content-main tr:nth-child(even) {
    background-color: #f2f2f2
}

.content-main tr:hover {
    background-color: #ddd
}

.content-main th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: var(--cl-main);
    color: #fff
}

.content-main td,.content-main th {
    border: 1px solid #ddd;
    padding: 8px
}

.content-main figcaption {
    text-align: center
}

.content-main a img {
    max-width: 100%;
    height: auto!important
}

.content-main blockquote {
    border-left: solid 3px #ccc;
    padding-left: 20px;
    margin-left: 20px;
    font-style: italic
}

.skeleton-item {
    box-shadow: 0 2px 5px rgba(0,0,0,.05)
}

.skeleton-box {
    background: #eee;
    background: linear-gradient(110deg,#ececec 8%,#f5f5f5 18%,#ececec 33%);
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
    border-radius: 4px
}

.skeleton-img {
    width: 100%;
    margin-bottom: 10px
}

.skeleton-title {
    height: 20px;
    width: 80%;
    margin-bottom: 8px
}

.skeleton-price {
    height: 20px;
    width: 50%
}

.ggdich-box {
    position: relative;
    display: inline-block
}

.ggdich-box__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0 0;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    color: inherit
}

.ggdich-box__icon {
    margin-right: 6px
}

.ggdich-box__dropdown {
    position: absolute;
    z-index: 15;
    top: 100%;
    left: 0;
    margin-top: 10px;
    min-width: 150px;
    background-color: #fff;
    padding: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)
}

.ggdich-box__item {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #000;
    margin-bottom: 10px;
    transition: color .2s
}

.ggdich-box__item:last-child {
    margin-bottom: 0
}

.ggdich-box__item:hover {
    color: #c0392b
}

.ggdich-box__flag {
    margin-right: 7px;
    display: inline-block;
    max-width: 22px
}

.ggdich-box__flag img {
    width: 100%;
    display: block
}

.sidebox-group {
    position: sticky;
    top: 60px;
    border: 1px solid #dee2e6;
    border-radius: clamp(5px,calc(10/1200*100vw),10px);
    padding: clamp(10px,calc(15/1200*100vw),15px)
}

.sidebox-group__header {
    display: flex;
    font-size: clamp(15px,calc(16/1200*100vw),16px);
    font-weight: 700;
    text-transform: uppercase;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    padding: 0 0 8px;
    border-bottom: .5px dashed #ebe0e0;
    margin-bottom: 10px
}

.sidebox-group__icon {
    font-size: 22px
}

.sidebox-group__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.sidebox-group__item {
    position: relative
}

.sidebox-group__link {
    color: #252a2b;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    display: block;
    text-transform: capitalize;
    transition: .3s;
    padding: 5px 0
}

.sidebox-group__item--has-child>.sidebox-group__link {
    padding-right: 30px
}

.sidebox-group__link--active,.sidebox-group__link:hover {
    color: var(--cl-main)!important
}

.sidebox-group__toggle {
    width: 25px;
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid transparent;
    display: none
}

.sidebox-group__item--has-child .sidebox-group__toggle {
    display: block
}

.sidebox-group__toggle:hover {
    border: 1px solid #e7e7e7
}

.sidebox-group__toggle::after,.sidebox-group__toggle::before {
    background: rgba(9,9,9,.6);
    content: '';
    display: block;
    position: absolute;
    margin-right: 7px;
    top: 50%;
    right: 0;
    transition: all .25s linear
}

.sidebox-group__toggle::before {
    width: 9px;
    height: 1px;
    transform: translateY(-50%)
}

.sidebox-group__toggle::after {
    width: 1px;
    height: 9px;
    right: 4px;
    transform: translateY(-50%) scale(1,1)
}

.sidebox-group__item.opened>.sidebox-group__link .sidebox-group__toggle::after {
    transform: translateY(-50%) scale(1,0)
}

.sidebox-group__sublist {
    margin: 0;
    padding-left: 10px;
    list-style: none;
    display: none
}

.prodetail {
    display: block;
    width: 100%
}

.prodetail__header {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 15px
}

.prodetail__gallery {
    position: relative
}

.prodetail__info {
    position: relative
}

.prodetail__thumb {
    margin-bottom: 10px;
    border: solid 1px #eee;
    background: #fff;
    border-radius: 10px;
    overflow: hidden
}

.prodetail__nav .splide__slide {
    opacity: .6;
    transition: opacity .3s;
    border: 1px solid transparent;
    border-radius: 10px;
    overflow: hidden
}

.prodetail__nav .splide__slide.is-active {
    opacity: 1;
    border: solid 1px var(--cl-main)!important;
    overflow: hidden
}

.prodetail__title {
    font-size: clamp(20px,calc(25/1200*100vw),25px);
    font-weight: 700;
    margin-bottom: 10px
}

.prodetail__option {
    margin: 15px 0;
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.prodetail__option li span {
    color: var(--cl-main)
}

.prodetail__social {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px
}

.prodetail__social-title {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap
}

.prodetail__price {
    margin: 15px 0;
    font-size: clamp(14px,calc(15/1200*100vw),15px)
}

.prodetail__price-new {
    font-size: clamp(18px,calc(24/1200*100vw),24px);
    font-weight: 700;
    color: #d0021b
}

.prodetail__price-old {
    text-decoration: line-through;
    color: #888;
    margin: 0 10px
}

.prodetail__price-discount {
    background: #d0021b;
    color: #fff;
    padding: 2px 3px;
    border-radius: 5px;
    font-size: 11px;
    position: relative
}

.prodetail__price-discount::before {
    content: "";
    border-right: 6px solid #d0021b;
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translate(0,-50%)
}

.prodetail__qty-group {
    margin: 20px 0;
    display: flex;
    align-items: center
}

.prodetail__qty-group label {
    font-weight: 600;
    margin-right: 15px
}

.prodetail__qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #dadada;
    border-radius: 4px;
    overflow: hidden
}

.prodetail__qty-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #f3f3f3;
    transition: .2s
}

.prodetail__qty-btn:hover {
    background: #eee
}

.prodetail__qty-btn svg {
    width: 14px;
    height: 14px
}

.prodetail__qty-input {
    width: 60px;
    height: 35px;
    border: none;
    text-align: center;
    outline: 0;
    -moz-appearance: textfield;
    border-left: solid 1px #dadada;
    border-right: solid 1px #dadada
}

.prodetail__qty-input::-webkit-inner-spin-button,.prodetail__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.prodetail__desc {
    margin: 20px 0
}

.prodetail__actions {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin: 20px 0
}

.prodetail__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-block:clamp(7px,calc(10/1200*100vw),10px);border: solid 1px #333;
    border-radius: 4px;
    font-size: clamp(14px,calc(15/1200*100vw),15px);
    transition: all .3s;
    text-decoration: none;
    min-height: 45px;
    cursor: pointer
}

.prodetail__btn:hover {
    color: #fff!important;
    background: color-mix(in srgb,var(--cl-main) 70%,#000)!important
}

.prodetail__btn--add {
    color: #d0021b;
    background: #fff;
    border-color: #d0021b
}

.prodetail__btn--buy {
    color: #fff;
    background: #d0021b;
    border-color: #d0021b
}

.prodetail__btn--hotline {
    color: #fff!important;
    background: var(--cl-main);
    border-color: var(--cl-main)
}

.prodetail__btn--zalo {
    color: #fff!important;
    background: #0068ff;
    border-color: #0068ff;
    padding: 5px 10px;
    text-align: left;
    justify-content: flex-start
}

.prodetail__btn-text {
    font-weight: 500;
    text-transform: uppercase
}

.prodetail__btn-subtext {
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-transform: none
}

.prodetail__tab-header {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
    padding: 0;
    list-style: none
}

.prodetail__tab-header li {
    padding: 10px 0;
    font-size: clamp(14px,calc(18/1200*100vw),18px);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: color .3s
}

.prodetail__tab-header li:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cl-main);
    transition: width .3s
}

.prodetail__tab-header li.active {
    color: var(--cl-main)
}

.prodetail__tab-header li.active:after {
    width: 100%
}

.prodetail__tab-body {
    display: none
}

.prodetail__tab-body[x-show] {
    display: block
}

.prodetail__related {
    margin-top: 40px
}

.prodetail__related-title h2 {
    font-size: clamp(18px,calc(24/1200*100vw),24px);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-left: 4px solid var(--cl-main);
    padding-left: 10px
}

.prodetail__related-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px 15px
}

.prodetail__attribute {
    margin-bottom: 20px
}

.prodetail__attribute-label {
    display: block;
    font-size: clamp(14px,calc(16/1200*100vw),16px);
    font-weight: 700;
    margin-bottom: 10px
}

.prodetail__attribute-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px
}

.prodetail__attribute-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 5px 12px;
    border: 1px solid #dadada;
    border-radius: 2px;
    background: #fff;
    color: #111;
    font-size: clamp(12px,1.5vw,14px);
    cursor: pointer;
    overflow: hidden
}

.prodetail__attribute-btn:hover {
    border-color: var(--cl-main)
}

.prodetail__attribute-btn.active {
    border-color: var(--cl-main);
    color: var(--cl-main)
}

.prodetail__attribute-check {
    position: absolute;
    bottom: -1px;
    right: -1px;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    clip-path: polygon(100% 0,0 100%,100% 100%);
    color: #fff;
    background-color: var(--cl-main)
}

.prodetail__attribute-btn.active .prodetail__attribute-check {
    display: flex
}

.contact-flex {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 20px
}

.contact-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px
}

.contact-form {
    margin-top: 20px;
    background: #f5f5f5;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    .btn-primary {
        background: var(--cl-main);
        border-color: var(--cl-main);
    }
}

.contact-input {
    margin-bottom: 10px
}

.contact-input input,.contact-input textarea {
    border-radius: 7px;
    border: 1px solid #e1e1e1;
    text-indent: 0;
    color: #000;
    font-size: 13px;
    min-height: 40px
}

.sort-select {
    display: flex;
    justify-content: end;
    margin: 20px 0px;
    position: relative
}

.sort-select .click-sort {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 10px 6px 8px;
    margin: 0px
}

.sort-select-main {
    display: grid;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 20%);
    position: absolute;
    padding: 0 7px;
    top: 30px;
    right: 0;
    width: 160px;
    z-index: 2
}

.sort-select-main p {
    border-bottom: 1px solid #f1f1f1;
    margin: 0px;
    order: 2
}

.sort-select-main p:has(.check) {
    order: 1
}

.sort a {
    color: #000;
    font-size: 14px;
    line-height: 17px;
    padding: 11px 3px;
    display: block;
    cursor: pointer
}

.sort a.check i {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 16px;
    border: 2px solid transparent;
    border-radius: 100px;
    vertical-align: middle
}

.sort a.check i::after {
    content: '';
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
    top: -4px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(45deg)
}

.sort-select .sort-show {
    padding-right: 12px;
    position: relative
}

.sort-select .sort-show::before {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #333;
    content: '';
    height: 0;
    position: absolute;
    top: 6px;
    right: 0;
    width: 0
}

@keyframes notifyPhone {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

@keyframes zoomzoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1.2)
    }
}

@keyframes shine {
    to {
        background-position-x: -200%
    }
}

.allicon {
    position: absolute;
    width: 100%
}

.pdall {
    padding: 60px 0;
    position: relative
}

.dflex {
    display: flex;
    flex-wrap: wrap
}

.tab-home {
    text-align: center;
    .inner {
        display: inline-block;
        border: 1px solid #fff;
        padding: 6px;
        border-radius: 30px;
        margin-bottom: 20px;
        button {
            color: #fff;
            text-transform: uppercase;
            cursor: pointer;
            margin: 0 5px;
            display: inline-block;
            padding: 10px 25px;
            font-weight: 700;
            font-size: 18px;
            transition: 0.3s;
            &:hover,&.active {
                background: #fff;
                color: var(--cl-main);
                border-radius: 30px
            }
        }
    }

    .inner-2 {
        border: 1px solid var(--cl-main);
        button {
            color: #000;
            &:hover,&.active {
                background: #2095D3;
                color: #fff
            }
        }
    }
}

.branch {
    position: relative;
    display: flex;
    gap: 10px
}

.branch .load-map {
    min-height: 300px;
    margin-top: 0px;
    position: relative;
    flex: 1 1 0
}

.branch .load-map iframe {
    position: absolute!important;
    width: 100%!important;
    height: 100%!important;
    top: 0px!important;
    left: 0px!important
}

.branch .items-map {
    width: 25%
}

.branch .items-map .scroll-maded {
    height: 100%;
    max-height: 400px
}

.branch .item-map {
    cursor: pointer;
    padding: 20px
}

.branch .item-map.active {
    background: #eee
}

.branch .item-map .name-map {
    font-weight: 700;
    color: var(--cl-main);
    font-size: 16px
}

.scroll-maded {
    overflow-y: scroll;
    overflow-x: hidden
}

.scroll-maded::-webkit-scrollbar {
    width: 2px
}

.scroll-maded::-webkit-scrollbar-thumb {
    width: 2px;
    background: var(--cl-hover)
}

.scroll-maded::-webkit-scrollbar-thumb:hover,.scroll-maded::-webkit-scrollbar-thumb:active {
    width: 2px
}

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

    to {
        transform: rotate(360deg)
    }
}

@keyframes cloudMove {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(40px)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes jump {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-40px)
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-30px)
    }
}

.button-dkhoc {
    background: #e70054;
    display: flex;
    padding: 10px;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    border-radius: 10px;
    color: #fff
}

.button-dkhoc:hover {
}

.wrap-aboutHome {
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden
}

.left-aboutHome {
    position: relative;
    width: 54.5%
}

.right-aboutHome {
    width: 43%
}

.pic-aboutHome {
    display: block;
    margin: 0
}

.sub-aboutHome {
    font-family: 'NotoSerif';
    font-size: 25px;
    color: #818181;
    font-weight: 100;
    text-transform: capitalize
}

.name-aboutHome {
    font-weight: 200;
    font-size: 78px;
    color: #454545;
    font-family: 'NotoSerifDisplay'
}

.name-aboutHome span {
    font-size: 130px;
    display: block;
    line-height: 1;
    text-transform: uppercase;
    color: #000
}

.desc-aboutHome {
    text-align: justify;
    color: #707070;
    font-size: 13px;
    line-height: 231%
}

.view-aboutHome {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--cl-main);
    font-size: 13px;
    color: var(--cl-main);
    text-transform: capitalize;
    min-width: 215px;
    text-align: center;
    margin-top: 2rem
}

.view-aboutHome:hover {
    transition: 0.5s ease;
    background: var(--cl-main);
    color: #fff
}

.view-aboutHome i {
    flex: 1;
    font-style: normal
}

.view-aboutHome span {
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    justify-content: center;
    border-left: 1px solid var(--cl-main)
}

.view-aboutHome:hover span {
    border-color: #fff
}

.view-aboutHome:hover span svg path {
    fill: #fff
}

.wrap-productNB {
    padding: 50px 0px;
}

.wrap-newsnb {
    padding: 4rem 0 4rem
}

.swiper-news .newsHome {
    margin-bottom: 3rem
}

.newsHome {
    position: relative;
    display: block;
    background: #fff;
    padding: 10px 10px 25px;
    text-align: center
}

.newsHome-photo {
    position: relative;
    display: block
}

.newsHome-time {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(249,247,240,0.8);
    font-size: 13px;
    color: #282828;
    padding: 10px 20px;
    margin: 0;
    min-width: 130px
}

.newsHome-name a {
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    color: #383838
}

.newsHome-desc {
    font-size: 13px;
    line-height: 231%;
    color: #383838;
    -webkit-line-clamp: 2;
    margin-bottom: 0.6rem
}

.newsHome-view {
    min-width: 130px;
    padding: 10px 10px;
    border: 1px solid #000;
    display: inline-block;
    color: #252525;
    font-size: 13px;
    text-transform: capitalize
}

.newsHome-view:hover {
    background: var(--cl-main);
    color: #fff
}

.wrap-newsletter {
    padding: 50px 0px;
    background: url(../images/11.png) top center no-repeat;
    background-size: cover;
}

.form-groupbutton .form-input {
    width: calc(100% - 130px)
}

.form-groupbutton .form-button {
    grid-column: span 2;
}

.form-groupbutton .form-group label {
    position: relative;
    top: inherit;
    left: inherit;
    color: #fff;
    margin-bottom: .7rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px
}

.form-groupbutton .form-group input,.form-groupbutton .form-group textarea {
    background: #fff;
    border-radius: 12px;
    padding: 0px 19px;
    height: 52px;
}

.form-groupbutton .form-group textarea {
    height: 80px!important;
    padding: 9px 19px;
}

.form-groupbutton .form-group input::placeholder {
    color: #6c6c6c
}

.form-groupbutton .form-btn--submit {
    border-radius: 12px;
    padding: 0px 22px;
    min-width: 180px;
    height: 52px;
    background: var(--vang);
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 150%;
    text-transform: capitalize;
    color: var(--gray-gray-700);
    gap: 10px;
}

.form-groupbutton .form-btn--submit:hover {
    transition: 0.5s ease;
    background-color: #c00
}

.tieuChi {
    padding: 100px 0px 50px;
    background: url(../images/5.png) bottom center no-repeat;
    background-size: cover;
}
