.bg-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0;
}

.fs-16 {
    font-size: 1.6rem;
}

.fs-18 {
    font-size: 1.8rem;
}

.info-left {
    font-size: 1.6rem;
}

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

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

.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}
.pb-20 {
    padding-bottom: 20px !important;
}

@media (min-width: 768px) {
    .col-md-20 {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .box-logo {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .box-policy > .main-content > .row > div:before {
        content: '';
        display: inline-block;
        width: 1px;
        height: 70px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: var(--gray-bold);
    }
}

/*--------------------------------------------------------------------------
|  Header
--------------------------------------------------------------------------*/
/*header {*/
    /*position: fixed;*/
/*    top: 0;*/
/*    z-index: 99;*/
/*    width: 100%;*/
/*    background: white;*/
    
/*}*/

/*body {*/
/*    padding-top: 70px;*/
/*}*/
.menu-bar {
    border-bottom: 1px solid var(--border);
    z-index: 999;
    left: 0;
    right: 0;
    background-color: white;
    margin: auto;
    transition: transform 1s ease-in-out;
}

.menu-bar.fixed {
    position: fixed;
    top: 0;
    transform: translateY(0);
    animation: slideDown 1s ease-in-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to   { transform: translateY(0); }
}
.is-mobile {
	/* padding-top: 56px; */
}
.slogan-header h2 {
    font-size: 16px;
}

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

.entire-action-header:hover .form-dropdown {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

.entire-action-header .form-dropdown {
    position: absolute;
    padding: 10px;
    background-color: var(--white);
    width: 350px;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.entire-action-header {
    position: relative;
}

.menu-section > ul > li > a:before {
    position: absolute;
    content: "";
    background: var(--color-highlight);
    width: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
}

.menu-section > ul > li > a:hover:before {
    width: 100%;
    left: 0;
    right: inherit;
}

.menu-section .active:before {
    width: 100%;
}

.setting-menu.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background: var(--white);
    z-index: 99;
}

.slide-down {
    animation: slideDownMenu 0.6s ease forwards;
}

@keyframes slideDownMenu {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*--------------------------------------------------------------------------
|  Main
--------------------------------------------------------------------------*/
.product-item--cate img {
    width: 7rem;
    height: 7rem;
    object-fit: contain;
}

.prd-cate-title {
    font-size: 1.8rem;
}

.product-item--cate {
    height: auto;
}

.product-item--cate:hover {
    background: var(--color-highlight);
}

.product-item--cate:hover img {
    filter: brightness(0) invert(1);
}

.product-item--cate:hover .prd-cate-title {
    color: white !important;
}

.item-countdown {
    padding: 9rem 0;
}

.item-countdown .countdown {
    display: block;
    text-align: center;
}

.item-countdown .countdown ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.item-countdown .countdown li {
    display: inline-flex;
    list-style-type: none;
    padding: .5rem;
    background: var(--color-highlight);
    margin: 0 .5rem;
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
    width: 77px;
    height: 77px;
    overflow: hidden;
    aspect-ratio: 1/1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.item-countdown .countdown li span {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: .8rem;
}

.bg-feed {
    background: #f9f8f3;
}

.feedback-item {
    background: white;
    padding: 3rem;
}

.feedback-item .inner-content {
    font-size: 1.8rem;
    color: #717171;
}

.feedback-item .inner-image img {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
}

.feedback-inner {
    margin-left: 2rem;
}

.feedback-inner .inner-name {
    font-size: 2.8rem;
    color: var(--color-highlight);
    text-transform: capitalize;
}

.feedback-inner .inner-job {
    font-size: 1.6rem;
    color: #717171;
}

.bg-bread {
    padding: 10% 0;
}

@media(min-width: 1000px) {
    .setting-menu > .container > .row > div:first-child {
        flex: 1 1;
        max-width: 100%;
    }

    .setting-menu > .container > .row > div:last-child {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 64%;
        max-width: 64%;
    }

    .setting-menu .menu-section > ul > li > a {
        /* line-height: 8rem; */
        /* height: 8rem; */
    }
}

.ds-language img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    flex: none;
}

.language-active img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    flex: none;
}

.language-active a {
    display: flex;
    gap: 5px;
    align-items: center;
    text-transform: uppercase;
    font-size: 1.6rem;
    padding: 5px;
}

.language-switch {
    margin-left: 2rem;
}

.topbar-section .language-switch ul.topbar-dropdown {
    right: 0;
    left: auto;
}

.t-fade:nth-child(1), .delay-1 {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
}

.t-fade:nth-child(2), .delay-2 {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
}

.t-fade:nth-child(3), .delay-3 {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
}

.t-fade:nth-child(4), .delay-4 {
    animation-delay: .8s;
    -webkit-animation-delay: 0.8s;
}

.t-fade:nth-child(5), .delay-5 {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.t-fade:nth-child(6), .delay-6 {
    animation-delay: 1.1s;
    -webkit-animation-delay: 1.1s;
}

.t-fade:nth-child(7), .delay-7 {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}

.t-fade:nth-child(8), .delay-8 {
    animation-delay: 1.3s;
    -webkit-animation-delay: 1.3s;
}

.t-fade:nth-child(9) {
    animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
}

.t-fade:nth-child(10) {
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
}

.t-fade:nth-child(11) {
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
}

.t-fade:nth-child(12) {
    animation-delay: 1.7s;
    -webkit-animation-delay: 1.7s;
}

.item-highlight {
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
}

.item-highlight i {
    font-size: 4rem;
    line-height: 1.4;
}

.title-highlight {
    font-size: 2rem;
}

.article-about .inner-image .content-image {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    margin: auto;
    width: max-content;
    padding: 0 3rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    background: var(--white);
    justify-content: center;
    border-radius: 75px;
    box-shadow: 0px 8px 51px 0px rgba(0, 0, 0, 0.07);
}

.article-about .inner-image .content-image .num-counter {
    font-size: 8rem;
    font-weight: bold;
    color: var(--color-highlight);
    margin-right: 1rem;
    letter-spacing: -4px;
}

.article-about .inner-image .content-image .num-text b {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: -1px;
}

.article-about .inner-content .article-category {
    font-size: 1.8rem;
    color: var(--black);
    font-weight: bold;
}

.article-about .inner-content .article-title {
    font-size: 2.4rem;
    color: var(--color-highlight);
    letter-spacing: -0.24px;
}

.article-about .inner-content .article-description {
    font-size: 1.6rem;
    text-align: justify;
}

.article-about .inner-content .article-description ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 3rem;
}

.article-about .inner-content .article-description ul li {
    display: flex;
    margin-bottom: 1rem;
}

.article-about .inner-content .article-description ul li img {
    margin-right: 1rem;
    filter: invert(22%) sepia(95%) saturate(1812%) hue-rotate(194deg) brightness(86%) contrast(105%);
}

.article-about .inner-content .article-description ul li div > * {
    display: inline-block;
}

.article-about .inner-content > a, .btn-need-help {
    transition: all 0.2s cubic-bezier(0.68, 0.01, 0.58, 0.75);
    font-size: 16px;
    padding: 21px 34px 21px 34px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: var(--white);
    z-index: 1;
    font-weight: bold;
    border-radius: 0 0 0 10px;
    background: var(--color-highlight);
}

.article-about .inner-content > a i, .btn-need-help i {
    position: absolute;
    right: -56px;
    top: 0;
    width: 57px;
    height: 100%;
    background-color: #f1591f;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 61% 0, 100% 100%, 0% 100%);
}

.article-about .inner-content > a:before, .btn-need-help:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    content: "";
    background-color: #f1591f;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
    border-radius: 0 0 0 10px;
}

.article-about .inner-content > a:hover:before, .btn-need-help:hover:before {
    width: 100%;
    height: 100%;
}

.article-about .inner-content > a:hover, .btn-need-help:hover {
    background-color: #f1591f;
    color: var(--white);
}

.item-numtk {
    display: flex;
    align-items: center;
    border-right: 1px solid #797979;
    justify-content: center;
    position: relative;
    width: 100%;
}

.section-thongke > div > .item-numtk:last-child {
    border-right: 0;
}

.item-numtk img {
    max-height: 5.4rem;
}

.num-tk {
    font-size: 3.4rem;
    line-height: 5.4rem;
    font-weight: bold;
    color: var(--color-highlight);
    display: block;
}

.title-tk {
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 1.6rem;
    line-height: 2.8rem;
}

.section-about-us {
    padding-bottom: 5rem;
}

.sub-description {
    display: block;
    margin-top: 2rem;
    font-size: 1.8rem;
    text-align: justify;
}

.item-giaiphap {
    padding: 2.4rem 2.4rem 3rem 2.4rem;
    background-color: #f3f3f3;
    transition-duration: .15s;
    height: 100%;
    border-radius: 8px;
}

.img-giaiphap {
    aspect-ratio: 1;
    height: 7rem;
    background-color: #ffecd3;
    padding: 0.9rem;
    align-content: center;
    border-radius: 5px;
}

.item-giaiphap .title {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    line-height: 1.45;
}

.item-giaiphap .description, .desc-section {
    font-size: 1.6rem;
}

.item-giaiphap:hover {
    box-shadow: 0 4px 25px #00000040;
}

.title-section {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.bg-right-form-home .title-section {
    font-size: 3rem;
}

.title-section::after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 400px;
    height: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--color-top)), to(transparent));
    background: linear-gradient(to right, transparent, var(--color-top), transparent);
}

.section-giaiphap .title-section::after {
    content: none;
}

.section-linhvuc .article-item .inner-image:before {
    content: '';
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 0%), #000000);
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
}

.section-linhvuc .article-item .article-description {
    overflow: hidden;
    margin-top: 3rem;
    opacity: 0;
    height: 0;
    -webkit-transition: height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
    transition: height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
    color: var(--white);
}

.section-linhvuc .article-item:hover .article-description {
    opacity: 1;
    margin-bottom: 3rem;
    height: auto;
}

.section-linhvuc .article-item .article-title {
    font-size: 2.4rem;
}

.typical-products .product-item .product-title {
    font-size: 1.8rem;
}

.product-action .btn-product-action:hover {
    background-color: var(--color-top);
}

.typical-products .product-item .inner-image:after {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, .4);
    display: block;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .25s;
    transition: .25s;
    content: "";
    z-index: 1;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
}

.typical-products .product-item:hover .inner-image:after {
    opacity: 1;
}

.btn-primary, .btn-secondary {
    border-radius: 0;
    text-decoration: none !important;
    font-size: 120%;
    font-weight: 600 !important;
}

.section-slogan {
    padding: 5rem 0;
}

.box.detail-content {
    font-size: 1.7rem;
    text-align: justify;
}

.box .box-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    color: var(--white);
}

.box-header .box-title {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    display: inline-block;
    font-size: 250%;
}

.box-header .box-desc {
    text-align: center;
}

.section-tamnhin .block-tab.nav .nav-item {
    margin: 0 1rem;
}

.section-tamnhin .block-tab.nav .nav-item .nav-link {
    font-size: 140%;
    font-weight: 700;
    border-radius: 30px;
    background: var(--gray);
    white-space: nowrap;
}

.section-tamnhin .block-tab.nav .nav-item .nav-link.active, .section-tamnhin .block-tab.nav .nav-item .nav-link:hover {
    background: var(--color-top);
    color: var(--white);
}

.section-tamnhin .block-tab .nav-link::after {
    content: none;
}

.article-tamnhin .inner-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    font-size: 2rem;
}

.article-tamnhin .inner-image .image-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    row-gap: 15px;
    position: relative;
    margin-bottom: 2rem;
}

.article-tamnhin .inner-image .image-item img {
    border: 5px solid var(--white);
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, .05);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .05);
    -webkit-transition: .25s;
    transition: .25s;
}

.article-tamnhin .image-left, .article-tamnhin .image-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.article-tamnhin .inner-image .image-left .image-item:first-child img {
    width: 80%;
    border-top-left-radius: 80px;
}

.article-tamnhin .inner-image .image-right .image-item img {
    width: 80%;
}

.article-tamnhin .image-right .image-item {
    margin-left: -15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.article-tamnhin .image-right .image-item:last-child img {
    border-bottom-right-radius: 80px;
    width: 75%;
}

.article-tamnhin .image-right .image-item:nth-child(2) img, .article-tamnhin .image-left .image-item:nth-child(2) img {
    width: 75%;
}

.article-tamnhin .image-right .image-item:nth-child(3) img {
    width: 65%;
}

.article-tamnhin .article-description ol {
    list-style: none;
    counter-reset: my-awesome-counter;
    margin: 0;
    padding: 0;
}

.article-tamnhin .article-description ol li {
    counter-increment: my-awesome-counter;
    position: relative;
    display: block;
    padding-left: 6rem;
    margin-bottom: 3rem;
}

.article-tamnhin .article-description ol li::before {
    background-color: var(--color-top);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 0;
    content: counter(my-awesome-counter);
    position: absolute;
    font-size: 90%;
    color: var(--white);
}

.section-quytrinh {
    padding: 0;
}

.production-process-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    counter-increment: process-item;
    position: relative;
    -webkit-transition: .25s;
    transition: .25s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.box-quytrinh > .row + .row {
    margin-top: 5rem;
}

.production-process-item .production-process-img {
    width: 28rem;
    height: 28rem;
    margin-bottom: 10px;
    position: relative;
}

.production-process-item .production-process-img img {
    width: 100% !important;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .1);
    -webkit-transition: .25s;
    transition: .25s;
}

.production-process-item .production-process-img:hover img {
    border: 10px solid var(--color-highlight);
}

.production-process-title {
    font-weight: 500;
    font-size: 150%;
    text-align: center;
}

.production-process-item .production-process-img .number {
    position: absolute;
    top: 50%;
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
    content: "";
    display: block;
    font-size: 180px;
    font-weight: 900;
    color: #eee;
    z-index: -1;
}

.item-partner {
    display: block;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ddd;
}

.item-partner img {
    -webkit-transition: .25s;
    transition: .25s;
}

.item-partner:hover img {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

@keyframes shine-hotline {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}

.item-partner::after {
    position: absolute;
    width: 50%;
    height: 200%;
    background: -webkit-gradient(linear,left top,right top,from(transparent),color-stop(var(--white)),to(transparent));
    background: linear-gradient(to right, transparent, var(--white), transparent);
    -webkit-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
    content: "";
    display: block;
    top: -20%;
    left: 20%;
    opacity: .3;
    z-index: 1;
    -webkit-animation: 2s infinite alternate shine-hotline;
    animation: 2s infinite alternate shine-hotline;
    pointer-events: none;
}

.box-tin-tuc .article-item .item-home {
    box-shadow: 0px 4px 10px 0px #00000033;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px;
}

.box-tin-tuc .article-item .inner-content {
    padding: 1.5rem;
}

.bg-img-form-home {
    padding: 3rem 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* background-color: var(--black); */
    background: #add1f4;
}

.bg-left-form-home {
    background-color: var(--white);
    padding: 3rem 3rem 3rem;
    border-radius: 30px 30px 0 0;
    /* text-align: center; */
    /* color: var(--white); */
    position: relative;
}

.bg-right-form-home {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
}

.des-form-home {
    text-transform: uppercase;
    font-size: 1.6rem;
    color: var(--color-highlight);
    font-weight: bold;
}

.bg-img-form-home .bg-right-form-home .title-section::after {
    content: none;
}

.bg-left-form-home img {
    max-width: 170px;
}

.bg-img-form-home .form-control {
    background-color: #f3f3f3;
    border: none;
    border-radius: 30px;
    min-height: 5rem;
    padding-left: 2rem;
}

.bg-img-form-home textarea {
    height: 12rem;
}

.bg-left-form-home .icon-circle i {
    background: white;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-highlight);
    border-radius: 40px;
    font-size: 20px;
}

.bg-left-form-home .line-item .line-item-icon i {
    background: #e2eefc;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-highlight);
    border-radius: 40px;
    font-size: 20px;
}

.bg-left-form-home .line-item .line-item-icon {
    flex: 0 0 48px;
    margin-right: 1.5rem;
}

.bg-left-form-home .title {
    font-size: 1.8rem;
    font-weight: 600;
    /* margin-bottom: 1.8rem; */
    height: 4.5rem;
    /* display: flex; */
    align-items: center;
    color: white;
}

.bg-left-form-home a {
    /* color: white; */
    /* font-size: 2rem; */
    font-weight: bold;
}

.bg-img-form-home .btn-submit {
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: 600;
    padding: 1rem 2rem;
    background-color: var(--color-highlight);
    border-color: var(--color-highlight);
}

.col-head {
    display: flex;
    background: var(--color-highlight);
    padding: 2rem;
}

.icon-circle {
    flex: 0 0 48px;
    margin-right: 1.5rem;
}

.line-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 1rem;
}

.bg-img-form-home .btn-submit:hover {
    color: var(--white);
    background-color: var(--color-top);
    border-color: var(--color-top);
}

.article-about-us .post-date, .article-about-us .social-share {
    display: none !important;
}

.article-about-us .bg-light {
    background: var(--white) !important;
    padding: 0 !important;
}

.banner-gioi-thieu {
    background-size: cover;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
}

.tilte-seo-gio-thieu {
    font-size: 4rem;
    color: var(--white);
    font-weight: bold;
    position: relative;
    z-index: 5;
}

.banner-gioi-thieu:after {
    position: absolute;
    content: "";
    display: block !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 38, 40, .5);
    z-index: 3;
}

.article .box-tin-tuc .article-item {
    height: 100%;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.btn-xem-them {
    color: var(--color-highlight);
    border-bottom: 1px solid;
    font-size: 1.6rem;
}

.btn-xem-them:hover {
    color: var(--color-top);
}

.social-share .list-social {
    margin-left: 10px;
}

.social-share .list-social .btn-social {
    float: left;
    margin: 0 10px 0 0;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.social-share .list-social .btn-social a:hover i {
    background: var(--color-highlight);
    color: var(--white);
    border-color: var(--color-highlight);
}

.social-share .list-social i {
    border: 1px solid;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all .25s ease;
}

.bg-bread:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    background-image: linear-gradient(268deg, #003B4900 0%, #101833 100%);
}

.bg-bread .breadcrumbs-section, .bg-bread .breadcrumbs-section h1 {
    font-size: 1.6rem;
}

.bg-bread .breadcrumbs-section a, .bg-bread .breadcrumbs-section a span {
    color: #e1e1e1;
}

.shadow-3 {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.product-item .inner-content .product-category a {
    font-size: 1.2rem;
    padding: 0.2rem 0.8rem;
}

.hover-img, .hover-product {
    overflow: hidden;
}

.hover-product img {
    transition: transform ease 0.3s;
}

.hover-product:hover img {
    transform: scale(1.1) rotate(1.5deg);
}

.product-item .btn-submit {
    background: var(--color-highlight);
    border: none;
    z-index: 1;
}

.product-item .btn-submit:before {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--color-top);
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1) 0s, -webkit-transform 500ms 0s;
}

.product-item .btn-submit:hover {
    color: var(--white);
}

.product-item .btn-submit:hover:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

#quick-view-modal .quickview-close {
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
}

#quick-view-modal .quickview-close:hover {
    transform: translateX(-50%) rotateZ(90deg);
}

.product-item .product-title {
    line-height: 1.3em;
    min-height: calc(2 * 1.3em);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.product-detail-footer .nav li {
    margin: 1rem;
}

.product-detail-footer .nav li a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    position: relative;
    padding: 1.2rem 2.5rem;
    background-color: rgb(16 24 51 / 20%);
    min-width: 23rem;
    border-radius: 0.5rem;
    text-align: center;
}

.product-detail-footer .nav li a:hover, .product-detail-footer .nav li a.active {
    background: var(--color-highlight);
    color: var(--white);
}

.close-pop {
    top: 0.5rem;
    right: 1rem;
    position: absolute;
    transition: all .3s ease;
}

.title-faqs {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.title-faqs::before {
    content: "";
    background: var(--color-highlight);
    right: 0;
    left: 0;
    position: absolute;
    bottom: -5px;
    height: 3px;
    display: block;
    z-index: 1;
    width: 40%;
}

.section-need-help .btn-need-help {
    font-size: 1.4rem;
    padding: 1rem 2rem;
    overflow: visible;
    border: none;
}

.section-need-help .btn-need-help i {
    right: -2.5rem;
    width: 3.5rem;
}

.card-header .btn-link {
    color: var(--black);
    background: #E3E3E3;
    border-radius: 5px;
    padding: 1.2rem 2rem;
    font-size: 1.8rem;
    width: 100%;
    max-width: 100%;
    border: none;
}

.card-header .btn-link:not(.collapsed) {
    background: var(--color-highlight);
    color: var(--white);
    border-radius: 5px 5px 0 0;
}

.card .card-body {
    border: 1px solid #ACACAC;
    padding: 1.5rem 2rem;
    border-top: 0;
    border-radius: 0 0 5px 5px;
    font-size: 1.6rem;
}

.acc-programs .card + .card {
    margin-top: 7px;
}

.item-album .inner-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 95%;
    text-align: center;
    color: var(--white);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.item-album {
    position: relative;
}

.item-album .inner-image::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(0 0 0 / 35%);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.item-album:hover .inner-image::before, .item-album:hover .inner-content {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
}

.item-album:hover .inner-content {
    top: 50%;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
}

.box-category-product .item .inter-content .name a {
    color: #000;
    font-size: 1.6rem;
}

.box-category-product .item .inter-content .name a:hover {
    color: var(--color-highlight);
}

.title-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.title-link .title-section::after {
    display: none;
}

.title-link .title-section {
    font-size: 3rem;
}

.title-about {
    font-size: 3rem;
    color: var(--color-highlight);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ratio-about:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    width: 95%;
    height: 2rem;
    background: var(--color-main);
    margin: 0 auto;
    border-radius: 8px;
    z-index: -1;
}

.tam-nhin-su-menh .row {
    align-items: center;
}

.rounded-cus {
    border-radius: 10px;
}

.tam-nhin-su-menh .row:nth-child(2) {
    flex-direction: row-reverse;
}

.tam-nhin-su-menh .tile {
    font-size: 2.8rem;
    color: var(--color-highlight);
    font-weight: bold;
}

.item-why {
    padding: 20px;
    background: #eee;
    height: auto;
    border-radius: 12px;
}

.item-why:hover {
    box-shadow: 0 4px 25px #00000040;
}

.item-why img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: rgb(255 236 211);
    padding: 5px;
    border: 12px;
}

.swiper-why--wrap {
    margin-top: 15px;
}

.swiper-why--wrap .swiper-why--title {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 15px;
}

.swiper-prize--title {
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}
/*--------------------------------------------------------------------------
|  Footer
--------------------------------------------------------------------------*/
.logo-section.logo-footer img {
    max-height: 11rem;
    margin-bottom: 1.5rem;
}

.section-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.item-social .btn-social {
    width: 4rem;
    height: 4rem;
    display: flex;
    background-color: var(--white);
    border: 1px solid #eee;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.item-social .btn-social img {
    max-height: 2.8rem;
}

.social-alibaba .btn-social img {
    max-height: 3.3rem;
}

.item-social .btn-social:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

.footer-menu-section ul li a, .copyright, .footer-contact-text, .des-form-home2, .share-title, .author {
    font-size: 1.6rem;
}

.footer-contact-text {
    
}

.footer-contact-text a {
    color: var(--color-text);
}

.footer-menu-section ul li {
    position: relative;
    padding-left: 2rem;
}

.footer-menu-section ul li:before {
    position: absolute;
    content: "\f105";
    color: var(--color-text);
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 700;
    font-size: 12px;
}

.footer-menu-section ul li a:hover {
    color: var(--color-highlight);
    text-decoration: underline;
}

.footer-contact-text i {
    display: inline-block;
    width: 3.5rem;
    margin-right: 5px;
    font-size: 2.5rem;
    color: var(--color-top);
}

.info-right > div:nth-child(2) .footer-contact-text i {
    /* display: none; */
}

/*nut lien he goc man hinh*/
.hotline-phone-ring-wrap {
    right: 10px;
    bottom: 5rem;
    position: fixed;
    z-index: 990;
}

.hotline-phone-ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 7rem;
    height: 7rem;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hotline-phone-ring-img-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotline-phone-ring-circle {
    width: 6.5rem;
    height: 6.5rem;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 2px solid rgb(51 152 205);
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.5;
}

.hotline-phone-ring-circle-fill {
    width: 5rem;
    height: 5rem;
    position: absolute;
    background-color: rgb(51 152 205);
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

@keyframes phonering-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.5) skew(1deg);
        -webkit-opacity: 0.1;
    }

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: 0.5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: 0.1;
    }
}

@keyframes phonering-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: 0.6;
    }

    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: 0.6;
    }
}

@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(15deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-15deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(15deg) scale(1) skew(1deg);
    }

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

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

.tooltip-social .tooltip-text {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    position: absolute;
    bottom: 4px;
    white-space: nowrap;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    right: 130%;
}

.tooltip-social:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-social:hover .tooltip-text::after {
    content: "";
    position: absolute;
    top: 27%;
    left: 100%;
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.75);
}

.tooltip-social:hover img {
    border-radius: 50%;
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%), 0 4px 15px rgb(0 0 0 / 13%);
}

.hotline-phone-ring-wrap .hotline-phone-ring:first-child .hotline-phone-ring-circle {
    border-color: #1877f2;
}

.hotline-phone-ring-wrap .hotline-phone-ring:first-child .hotline-phone-ring-circle-fill {
    background-color: #1877f2;
}

.bg-img-form-home .infor, .info-contact {
    font-size: 1.6rem;
}

.list_image.cam_ket img {
    border: 2px solid var(--color-highlight);
}

#whatsapp .hotline-phone-ring-circle {
    border-color: #03c403;
}

#whatsapp .hotline-phone-ring-circle-fill {
    background-color: #03c403;
}

/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/
.is-mobile .setting-menu:not(.fixed) {
    border-bottom: 1px solid #e1e1e1;
}

@media(min-width: 768px) {
    .section-linhvuc .article-item .inner-content {
        color: #fff;
        position: absolute;
        bottom: 0rem;
        left: 0;
        width: 100%;
        z-index: 2;
    }

    .contact-map::before {
        padding-top: 36.45%;
    }

    .swiper-slider-main .swiper-slide--wrap {
        top: 40%;
    }
}

@media(min-width: 992px) {
    .home .setting-menu {
        /* margin-bottom: -11.4rem; */ z-index: 1111;
    }

    .content-tk {
        margin-left: 2rem;
    }

    .swiper-slider-main .swiper-slide--wrap {
        top: 30%;
        max-width: 90%;
    }
}

@media(min-width: 1300px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1300px;
    }

    .swiper-slider-main .swiper-slide--wrap {
        max-width: 1270px;
        top: 25%;
    }
}

@media(min-width: 1400px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1380px;
    }

    .swiper-slider-main .swiper-slide--wrap {
        max-width: 1380px;
        top: 25%;
    }
}

@media(max-width: 1400px) {
    .production-process-item .production-process-img {
        width: 15rem;
        height: 15rem;
    }

    .production-process-item .production-process-img .number {
        font-size: 12rem;
    }
    .typical-products .product-item .product-title {
        font-size: 1.1rem;
    }
    .price-amount{
        font-size: 1rem;
    }
    .product-item .product-title {
        line-height: 1.2rem;
        min-height: calc(2 * 1.3em);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
}

@media(max-width: 991.98px) {
    .item-numtk {
        display: block;
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-thongke > div > .item-numtk:nth-child(2) , .section-thongke > div > .item-numtk:nth-child(4) {
        border-right: 0;
    }

    .swiper-slider-main .swiper-slide--tile {
        font-size: 4.2rem;
    }

    .production-process-item .production-process-img {
        width: 10rem;
        height: 10rem;
    }

    .production-process-item .production-process-img .number {
        font-size: 8rem;
        left: -4px;
    }

    .production-process-title {
        font-size: 90%;
    }

    .production-process-item {
        padding: 0;
    }

    .bg-left-form-home {
        padding: 2rem 1rem 0;
    }

    .bg-right-form-home {
        padding: 2rem;
    }

    .bg-left-form-home a {
        font-size: 1.8rem;
    }

    .bg-right-form-home .title-section {
        font-size: 2.6rem;
    }

    .title-highlight {
        font-size: 1.6rem;
    }
}

@media(max-width: 767.98px) {
    .title-section {
        font-size: 3rem;
    }

    .swiper-slider-main .swiper-slide--wrap {
        text-align: center;
    }

    .swiper-slider-main .swiper-slide--tile {
        font-size: 3.8rem;
    }

    .section-linhvuc .article-item .inner-content * {
        color: var(--black) !important;
    }

    .section-linhvuc .article-item .article-description {
        margin-top: 2rem;
        margin-bottom: 2rem;
        opacity: 1;
        height: auto;
    }

    .section-linhvuc .article-item [class*="ratio-"] {
        padding-top: 56.25%;
    }

    .article-about .inner-image [class*="ratio-"] {
        padding-top: 100%;
    }

    .box-header .box-title {
        font-size: 180%;
    }

    .section-tamnhin .block-tab.nav {
        overflow: auto;
        flex-wrap: nowrap;
    }

    .production-process-title {
        font-size: 80%;
    }

    .bg-img-form-home .form-control {
        min-height: 4rem;
    }

    .product-detail-footer .nav li {
        width: 100%;
    }

    .article .box-tin-tuc .article-item {
        width: 100%;
        flex-direction: column;
    }
}

@media(max-width: 575.98px) {
    .swiper-slider-main .swiper-slide--wrap {
        z-index: 2;
        color: var(--white);
    }

    .swiper-slider-main .swiper-slide--tile {
        font-size: 2.8rem;
        color: var(--white);
    }

    .swiper-slider-main .swiper-slide--description {
        font-size: 1.6rem;
    }

    .swiper-slider-main .swiper-slide {
        position: relative;
    }

    /* .swiper-slider-main .swiper-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 60%);
        z-index: 0;
    } */
    /*.production-process-item .production-process-img {*/
    /*    width: 60px;*/
    /*    height: 60px;*/
    /*}*/
    .production-process-item .production-process-img .number {
        font-size: 36px;
        left: -4px;
    }

    .is-mobile .bg-img-form-home .infor {
        font-size: 16px;
    }
}

.one-left {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.one-left .infor {
    padding: 2rem;
}

.one-left .infor > .line-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.one-left-mail .line-item .line-item-content p {
    font-weight: 700;
}

.one-left-mail .line-item .line-item-content a {
    color: var(--color-top);
    font-size: 14px;
}

.one-left .col-head .title p {
    font-weight: 700;
}

.one-left .col-head .title span {
    font-size: 14px;
}

.one-left .box-social a img {
    width: 42px;
    height: 42px;
}

.one-left .box-social {
    display: flex;
    gap: 1rem;
}

.one-left-phone .line-item {
    justify-content: space-between;
}

.bg-left-form-home .img-girl {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bg-img-form-home .box-policy {
    background: white;
    padding: 0 3rem 10px 3rem;
    border-radius: 0 0 30px 30px;
}

.box-policy .main-content {
    background: var(--color-highlight);
    border-radius: 25px;
}

.box-policy .item-policy {
    padding: 3rem;
    color: white;
    display: flex;
    align-items: center;
}

.box-policy .item-policy .icon {
    flex: 0 0 48px;
    margin-right: 1.5rem;
}

.box-policy .item-policy .icon i {
    background: #e2eefc;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-highlight);
    border-radius: 40px;
    font-size: 20px;
}

.box-policy .item-policy .content p {
    font-size: 16px;
    font-weight: 700;
}

.box-policy > .main-content > .row > div:last-child::before {
    display: none;
}
.introduce-size{
    font-size: 16px;
}
.padding-hotline{
    line-height: 1.2;
}
.pb-custom{
    padding-bottom: 20px;
}
.py-custom{
    padding-bottom: 35px;
    padding-top: 35px;
}
.pt-custom{
    padding-top: 35px;
}

.view-history {
    position: relative;
}

.view-history::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 2px;
    margin: auto;
    background-color: #dd701152;
}

.item-history {
    position: relative;
}

.item-history::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 20px;
    height: 20px;
    margin: auto;
    background-color: var(--color-highlight);
    border-radius: 50%;
}

.content-history {
    transform: translateY(-14px);
}

.title-history {
    font-size: 30px;
    font-weight: 700;
    line-height: 50px;
    color: var(--color-highlight);
    font-family: sans-serif;
    margin-bottom: 1.5rem;
}

.dsc-history {
    font-size: 15px;
    line-height: 29px;
    color: var(--color-black);
}

.view-history .item-history:nth-child(odd) {
    flex-direction: row-reverse;
}

.view-history .item-history:nth-child(even) .content-history {
    text-align: right;
}


