body {
  font-family: 'SF Pro Display', sans-serif;
}

.bg-main {
    background: var(--color-main);
}

.mt-5x, .my-5x {
    margin-top: 50px;
}

.mb-5x, .my-5x {
    margin-bottom: 50px;
}

.pt-5x, .py-5x {
    padding-top: 50px;
}

.pb-5x, .py-5x {
    padding-bottom: 50px;
}

.lightdark {
    background: lightgray;
}

@media (min-width: 1200px) {
    .setting-menu>.container>.row>div:nth-child(3) {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-basis: calc(50% - 170px);
        max-width: calc(50% - 170px);
    }

    .setting-menu>.container>.row>div:nth-child(1) {
        flex: 0 0 70px;
        max-width: 70px;
    }

    .setting-menu .row.no-gutters>div:nth-child(3) {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .menu-section > ul {
        display: flex;
        justify-content: center;
    }

    .wrap-suggestion {
        min-width: 300px;
        right: 0;
    }
    
    .product-image-detail .swiper-vertical {
        height: 56.1rem;
    }
}

.logo-section {
    background: white;
    display: flex;
    height: 70px;
    width: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.wrap-suggestion .item-search {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ddd;
}

.wrap-suggestion .item-search>a {
    color: #000;
    display: flex;
    flex-wrap: wrap;
}

.wrap-suggestion .item-search>a>.inter-img {
    flex: 0 0 70px;
    max-width: 70px;
}

.wrap-suggestion .item-search>a> .inter-content {
    flex-basis: calc(100% - 70px);
    max-width: calc(100% - 70px);
    padding-left: 15px;
}

.wrap-suggestion .item-search>a> .inter-content .price {
    display: flex;
    align-items: center;
}

.rounded-8 {
    border-radius: 8px;
}

.rounded-12 {
    border-radius: 12px;
}


a.btn-mini-cart.btn-action-header>svg {
    margin-right: 5px;
    filter: invert(1);
}

.section-search .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.section-search .input-group .btn-submit {
    background: #fff;
    border: 0;
    padding: 0;
    width: 35px;
    border-radius: 0;
}

a.btn-mini-cart.btn-action-header {
    height: 40px;
    background: var(--color-main);
    color: white;
    border-radius: 8px;
    margin-left: 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

a.btn-mini-cart.btn-action-header:hover {
    background: white;
    color: var(--color-main);
}

.language-section {
    position: relative;
    font-size: 12px;
}

.language-section ul {
    position: absolute;
    background: #ffffff;
    min-width: 100px;
    top: 100%;
    right: 0;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid #e3e3e3;
    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;
    transition: opacity 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
}

.language-section ul a {
    padding: 0 10px;
    line-height: 30px;
    height: 30px;
    display: block;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.language-section ul a:hover {
    background: #f4f4f4;
}

.language-section:hover ul {
    -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;
}

a.language-picker {
    text-transform: uppercase;
    font-weight: 600;
    width: 64px;
    line-height: 39px;
    display: flex;
    padding: 0 10px;
    color: #666;
}

a.language-picker:hover {
    color: #666;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.menu-section .entry-menu > li > a {
    display: flex;
    align-items: center;
}

.menu-section .entry-menu > li > a img {
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin-right: 0.5rem;
}

.section-about .info-left {
    background: #fff;
    border-radius: 40px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-about .info-left .icon {
    margin-bottom: 30px;
}

.section-about .info-left .title {
    font-size: 36px;
    color: var(--color-highlight);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.section-about .info-left .dsc {
    font-size: 18px;
}

.section-about .info-right .list-option {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.section-about .info-right .list-option .item {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
}

.section-about .info-right .list-option .item .info {
    display: flex;
    align-items: center;
    background: #fff;
    margin-top: 20px;
    padding: 10px;
    border-radius: 12px;
}

a.btn-mini-cart.btn-action-header .title {
    white-space: nowrap;
}

.section-about .info-right .list-option .item .info .text {
    flex: 1 1;
    padding-left: 15px;
}

.section-about .info-right .list-option .item .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #526E3E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-about .info-right .list-option .item .info .text .name {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-text);
}

.section-about .info-right .list-option .item .info .text .dsc {
    color: var(--color-text);
}

.section-about {
    padding-top: 50px;
}

.section-about .info-right .banner {
    padding-top: 63%;
}

.section-box-01 {
    padding-bottom: 60px;
    position: relative;
}

.section-box-01:before {
    content: '';
    position: absolute;
    top: 50%;
    background: rgba(0, 136, 72, 0.10);
    filter: blur(150px);
    width: 672px;
    height: 672px;
    right: -200px;
    transform: translateY(-50%);
    z-index: 0;
}

.section-box-01:after {
    content: '';
    position: absolute;
    top: 50%;
    background: rgba(0, 136, 72, 0.10);
    filter: blur(150px);
    width: 408px;
    height: 408px;
    left: -200px;
    transform: translateY(-50%);
}

.section-type-02 .info-left .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-highlight);
    margin-bottom: 20px;
}

.section-type-02 .info-left .list-option .item {
    display: flex;
    align-content: flex-start;
}

.section-type-02 .info-left .list-option .item .icon {
    flex: 0 0 33px;
    margin-right: 15px;
}

.section-type-02 .info-left .list-option .item {
    margin-bottom: 20px;
}

.section-type-02 .info-right .banner {
    border-radius: 22px;
    overflow: hidden;
    border: 8px solid #fff;
    padding-top: 66.25%;
}

.title-icon {
    margin-bottom: 30px;
}

.title-icon .icon {
    text-align: center;
}

.title-icon .icon img {
    height: 24px;
}

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

.section-type-02 {
    margin-top: 50px;
}

.section-type-reason .info-right .item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 25px;
    height: 100%;
}

.section-type-reason .info-right .item .icon {
    width: 83px;
    height: 83px;
    background: #7BAC77;
    border-radius: 80%;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-type-reason .info-right .item .icon span.icon-bf {
    position: absolute;
    bottom: 0;
    right: -15px;
}

.section-type-reason .info-right .item .name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}

.section-type-reason .banner {
    padding-top: 159%;
}

.section-type-reason .banner img {
    object-fit: contain;
}

.section-type-reason {
    position: relative;
}

.section-type-reason .icon-before {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -2;
}

.section-type-reason .icon-before img {
    width: 270px;
    height: 364px;
    object-fit: contain;
}

.section-type-reason .info .info-left {
    padding-right: 50px;
    margin-bottom: 15px;
}

.section-type-reason .info-right>.row {
    margin-right: -7.5px;
    margin-left: -7.5px;
}

.section-type-reason .info-right>.row>div {
    padding-right: 7.5px;
    padding-left: 7.5px;
    margin-bottom: 15px;
}

.section-type-reason .info-right .item .icon img {
    width: 30px;
    height: 30px;
}

.section-feedback .item {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
}

.section-feedback .item .content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-feedback .item .content .inter-img {
    text-align: center;
}

.section-feedback .item .content .inter-img .img img {
    width: 200px;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100%;
}

.section-feedback .item .content .inter-img .img {
    margin-bottom: 10px;
}

.section-feedback .item .content .inter-contect {
    =: 30px;
    text-align: center;
}

.section-feedback .item .content .inter-contect .name {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--color-highlight);
}

.section-feedback .item .content .inter-contect .description {
    text-align: justify;
    max-height: 145px;
}

.section-box-03 {
    padding-bottom: 50px;
}

.section-box-02 {
    margin-bottom: 50px;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
}

.section-product-hot {
    position: relative;
    margin-bottom: 40px;
    margin-top: 40px;
}

.section-product-hot .img-before img {
    position: absolute;
    top: -40px;
    left: -40px;
    height: calc(100% + 80px);
    width: auto;
    z-index: -1;
}

/* .section-product-hot:before {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    left: 50%;
    transform: translate(-50% , -50%);
    background: #C2D1B0;
    border-radius: 16px;
    z-index: -1;
} */
.section-product-hot .title-icon, .section-feedback .title-icon {
    margin-bottom: 30px;
}

.section-box-041 {
    margin-bottom: 50px;
}

.product-item .inner-image .img img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.product-item .inner-content .price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-item .inner-content a.btn-product-action {
    background: var(--color-main);
    width: 100%;
    display: flex;
    border-radius: 8px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-main);
    color: #fff;
}

.product-item .inner-content a.btn-product-action svg {
    margin-right: 10px;
    display: inline-block;
}

.section-box-04 {
    padding-bottom: 50px;
    background: var(--light);
}

.product-item .inner-content a.btn-product-action:hover {
    background: none;
    color: var(--color-main);
}

.product-item .inner-content a.btn-product-action:hover svg, .product-item .inner-content a.btn-product-action:hover svg path {
    fill: var(--color-main);
}

.swiper .article-item {
    /* box-shadow: none; */
    /* background-color: transparent; */
}

.article .article-item .inner-content {
    padding: 0 10px 10px;
}

.article-item .inner-image .img img {
    border-radius: 12px;
}

.article-item .inner-content {
    margin-top: 10px;
    padding: 0 10px 10px;
}

.article-item .inner-content .date-view {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.article-item .inner-content .date-view span.post-date {
    font-size: 14px;
    color: #888888;
}

.article-item .inner-content .date-view span.view {
    color: #888888;
    font-size: 14px;
}

.article-item .inner-content a.link-more {
    color: var(--color-highlight);
    font-size: 16px;
}

.article-item .inner-content a.link-more:hover {
    color: var(--color-main);
}

.row:not(.no-gutters) {
    margin-right: -7.5px;
    margin-left: -7.5px;
}

.row:not(.no-gutters) > div {
    padding-right: 7.5px;
    padding-left: 7.5px;
}

.section-feedback {
    margin-bottom: 50px;
}

.item-img-brand .img-brand img {
    object-fit: contain;
}

.item-img-brand .img-brand {
    padding-top: 48.25%;
    background: #fff;
    border-radius: 8px;
}

.map iframe {
    width: 100%;
    height: 400px;
    margin-bottom: -6px;
}

.section-box-05 {
    padding-bottom: 50px;
}

footer {
    background: #fff;
}

.footer-mid {
    padding: 50px 0;
    background: #252525;
}

footer .logo-section {
    margin-bottom: 20px;
}

.title-footer {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.entire-info-website address p {
    color: #333333;
    font-size: 1.6rem;
}

.entire-info-website address p svg {
    margin-right: 10px;
}

.menu-footer>ul {
    margin-bottom: 0;
}

.menu-footer>ul>li {
    list-style: none;
    margin-left: 0;
    margin-bottom: 15px;
}

.menu-footer>ul {
    padding-left: 0;
}

.menu-footer>ul>li>a {
    color: #333333;
    font-size: 1.6rem;
}

.menu-footer>ul>li>a:hover {
    color: var(--color-main) !important;
}

.box-form-contact .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.box-form-contact .dsc {
    margin-bottom: 15px;
}

.box-form-contact form .form-control {
    height: 4.8rem;
    background: none;
    border: 0;
    border-bottom: 1px solid #888888;
    border-radius: 0;
    font-size: 1.6rem;
}

article.video-item .item-video {
    position: relative;
}

.video-item .item-video .inner-image {
    position: relative;
}

.video-item .item-video .inner-image .img i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: #0000007d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.video-item .item-video .inner-image .content {
    position: absolute;
    bottom: 13px;
    pointer-events: none;
    z-index: 2;
    color: #fff;
    height: 49px;
    font-size: 15px;
    left: 0;
    padding: 0 15px;
    overflow: hidden;
}

.video-item .item-video .inner-image .img:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    content: '';
    position: absolute;
    bottom: 0;
    height: 150px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.video-item .item-video .inner-image .img {
    border-radius: 8px;
    overflow: hidden;
}

.image-mook {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.position-icon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
}

.position-icon-play img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.section-box-06 {
    padding-bottom: 50px;
}

.product-detail-head>.row {
    margin-right: -35px;
    margin-left: -35px;
}

.product-detail-head>.row>div {
    padding-right: 35px;
    padding-left: 35px;
}

.product-rating .star-rating::before, .product-rating .star-rating span::before {
    color: #ffce3d;
}

.product-content-detail .product-rating {
    margin-bottom: 10px;
}

.product-content-detail .price .price-amount.old-price {
    font-size: 1.6rem;
    font-weight: 400;
    color: #c9c9c9;
}

.product-content-detail .price .price-amount.old-price:after {
    background-color: #c9c9c9;
}

.product-content-detail {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 15px;
}

.product-single__policy {
    display: flex;
    flex-wrap: wrap;
    padding-top: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
}

.product-single__policy .item-product-policy {
    flex: 0 0 33.33%;
    text-align: center;
    margin-bottom: 0;
}

.product-single__policy .item-product-policy .icon {
    margin-bottom: 1rem;
}

.product-single__policy .item-product-policy .icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.product-single__policy .item-product-policy .description {
    font-size: 14px;
    line-height: 1.2;
    color: #000;
    padding: 0 10px;
}

.title-detail-product {
    font-weight: 600;
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
}

.coupons {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.coupons .coupon {
    display: flex;
    border: 1px solid rgba(36, 36, 36, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 200px;
}

.coupons .coupon:not(:last-child) {
    margin-right: 1rem;
}

.coupons .coupon-left:before {
    content: "";
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    background: #f1f0ec;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    border-top: 1px solid rgba(36, 36, 36, 0.3);
    border-right: 1px solid rgba(36, 36, 36, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    border-left: 1px solid rgba(0, 0, 0, 0);
    border-radius: 100em;
}

.section-detail-product .coupons .coupon {
    min-width: 200px;
}

.coupons .coupon-left {
    flex: 1;
    border-right: 2px dashed rgba(102, 102, 102, 0.7607843137);
    min-width: 20px;
    max-width: 20px;
    position: relative;
}

.coupons .coupon-right {
    flex: 2;
    padding: 0.8rem 1rem 0.8rem 1rem;
    position: relative;
}

.coupons .coupon-right .coupon-title {
    font-size: 14px;
    font-weight: bold;
    color: #c33;
    margin-bottom: 5px;
}

.coupons .coupon-right .coupon-description {
    font-size: 12px;
    color: #4d4d4d;
    display: block;
    min-width: 135px;
    transition: 0.2s all;
}

.product-coupons {
    padding-bottom: 15px;
}

.section-product-description .product-description {
    font-size: 14px;
    color: #000;
}

.section-product-description .product-description>ul {
    padding-left: 20px;
}

.box-product-detail {
    border-top: 1px solid #ddd;
    margin-top: 21px;
    padding-top: 30px;
    padding-bottom: 50px;
}

.product-detail-footer .title, .box-sp-lien-quan .title-section , .title-comment-detail {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}

.content-all-detail h2 {
    font-size: 20px;
}

.content-all-detail h3 {
    font-size: 18px;
}

.content-all-detail h4 {
    font-size: 16px;
}

.content-all-detail a.btn-view-all {
    border: 1px solid #000;
    padding: 7px 40px;
    color: #000;
    font-weight: 700;
}

a.btn-view-all.btn-hide {
    display: none;
}

.content-all-detail.transform-active a.btn-view-all.btn-show {
    display: none;
}

.content-all-detail.transform-active a.btn-view-all.btn-hide {
    display: inline-block;
}

.content-all-detail.transform-active .info-content {
    max-height: 100%;
}

.content-all-detail .info-content {
    max-height: 1120px;
    overflow: hidden;
}

.section-box-dg {
    margin-bottom: 30px;
}

.box-service-detail-product, .section-product-description {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-detail-footer {
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
}

.breadcrumbs-section a:last-child::after {
    display: none;
}

article.article-detail {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

article.article-detail .title {
    font-size: 25px;
    font-weight: 700;
}

.article-detail ul {
    padding-left: 20px;
}

.box-article-view {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.box-article-view .title-section {
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.list-view .item {
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f2f2f2;
    line-height: 1.4;
}

.list-view .item>span {
    flex: 0 0 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    background: var(--color-highlight);
    color: #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 2.4rem;
    margin-right: 1rem;
    font-size: 14px;
    margin-top: 4px;
}

.list-view .item a {
    color: #000;
    font-size: 16px;
    text-transform: lowercase;
}

.list-view .item a:first-letter {
    text-transform: uppercase;
}

.list-view .item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}

.stk-top {
    position: sticky;
    top: 0;
}

@media(min-width: 1200px) {
    .setting-menu > .row > div:nth-child(1),
    .setting-menu > .row > div:nth-child(2) {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

@media (max-width: 1200px) {
    .section-about {
        padding-top: 30px;
    }

    .section-about .info-left .icon {
        margin-bottom: 20px;
    }

    .section-about .info-left {
        border-radius: 20px;
        padding: 20px;
    }

    .section-about .info-left .title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .section-about .info-left .dsc {
        font-size: 14px;
    }

    .section-type-02 {
        margin-top: 30px;
    }

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

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

    .title-icon {
        margin-bottom: 20px;
    }

    .section-type-02 .info-left .title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .section-type-02 .info-left .list-option .item {
        margin-bottom: 15px;
    }

    .section-box-04 {
        margin-bottom: 30px;
    }

    .section-product-hot .img-before img {
        height: calc(100% + 60px);
        top: -30px;
    }

    .section-feedback .item .content {
        display: flex;
        flex-direction: column;
    }

    .section-feedback .item .content .inter-contect {
        padding-left: 0;
        text-align: center;
    }

    .section-feedback .item .content .inter-contect .description {
        text-align: center;
    }

    .section-feedback .item {
        padding: 15px;
    }

    .container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
        padding-right: 10px;
        padding-left: 10px;
    }

    .section-feedback {
        margin-bottom: 30px;
    }

    .row.no-gutters {
        margin-right: 0;
        margin-left: 0;
    }

    .section-box-03 {
        padding-bottom: 20px;
    }

    article.video-item .item-video .inner-image {
        border-radius: 25px;
    }

    .section-box-06 {
        padding-bottom: 30px;
    }

    .title-icon .icon img {
        height: 15px;
    }

    .section-box-05 {
        padding-bottom: 30px;
    }

    .map iframe {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .section-about .info-left {
        margin-bottom: 20px;
        height: auto;
    }

    .section-about .info-right .list-option .item .info {
        display: flex;
        flex-direction: column;
        height: 100%;
        margin-top: 0;
    }

    .section-about .info-right .list-option .item .info .text {
        padding-left: 0;
        text-align: center;
    }

    .section-about .info-right .list-option .item .icon img {
        height: 30px;
        width: 30px;
    }

    .section-about .info-right .list-option .item .icon {
        margin-bottom: 10px;
    }

    .section-about .info-right .list-option .item .info .text .name {
        font-size: 16px;
    }

    .section-about .info-right .list-option .item {
        padding-left: 5px;
        padding-right: 5px;
        margin-top: 10px;
    }

    .section-about .info-right .list-option {
        margin-left: -5px;
        margin-right: -5px;
    }

    .section-about .info-right .banner {
        margin-bottom: 10px;
    }

    .section-box-01 {
        padding-bottom: 30px;
    }

    .section-type-reason .info .info-left {
        display: none;
    }

    .section-type-reason .info-right .item {
        padding: 15px 10px;
        border-radius: 15px;
    }

    .section-type-reason .info-right .item .icon {
        width: 75px;
        height: 75px;
        margin-bottom: 10px;
    }

    .section-box-02 {
        margin-bottom: 20px;
    }

    .section-product-hot {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .section-product-hot:before {
        width: calc(100% + 60px);
        height: calc(100% + 60px);
    }

    .section-product-hot .title-icon, .section-feedback .title-icon {
        margin-bottom: 20px;
    }

    .product-item .inner-content {
        padding: 10px;
    }

    .product-title {
        font-size: 13px;
        margin-bottom: 5px;
        height: 32px;
        overflow: hidden;
    }

    .product-item .inner-content .price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .price-amount.old-price {
        margin-left: 0;
    }

    .section-box-041 {
        margin-bottom: 30px;
    }

    .product-item .inner-content a.btn-product-action {
        font-size: 12px;
        height: 40px;
    }

    .product-item .inner-content a.btn-product-action svg {
        margin-right: 5px;
    }

    .footer-mid {
        padding: 40px 0 20px;
    }

    .footer-mid>.container>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 992px) {
    .section-box-product-detail>.container>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .content-all-detail h2 {
        font-size: 18px;
    }

    .content-all-detail h3 {
        font-size: 16px;
    }

    .section-type-reason .info-right>.row>div {
        padding-right: 5px;
        padding-left: 5px;
        margin-bottom: 10px;
    }

    .section-type-reason .info-right>.row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .row>div {
        padding-right: 5px;
        padding-left: 5px;
    }

    .section-type-reason .info-right .item {
        padding: 15px 10px;
    }
}

.quantity-delete {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-info-section {
    border: 1px solid #ddd;
}

.cart-info-section>thead>tr>th {
    background: #ddd;
    border-color: #ddd;
    color: #000;
}

.cart-info-section .cart-item .name-cart {
    color: #000;
}

.billing-details .form-billing .form-group input.form-control {
    border: 1px solid #ddd;
}

.billing-details .form-billing .form-group .dropdown-toggle {
    background: #fff;
    border-color: #ddd;
}

.ratio-slider {
    padding-top: 36.5%;
    border-radius: 0;
}

.section-box-slogan {
    background: var(--color-highlight);
    color: white;
    padding: 50px 0;
}

.section-box-slogan h1 {
    font-size: clamp(2.2rem, 4vw + 1rem, 5rem);
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.btn-slogan {
    background: var(--color-main);
    border-radius: 30px;
    border: 1px solid var(--color-main);
    color: #fff;
    display: inline-block;
    padding: 1rem 2rem;
    text-transform: uppercase;
}

.btn-slogan:hover {
    background: white;
    color: var(--color-main);
}

.text-html {
    text-align: center;
    color: white;
    font-size: clamp(2rem, 2vw, 3rem);
}

.ratio-service, .partner-section .item [class*="ratio-"] {
    border-radius: 0;
}

.service-name {
    background: var(--color-highlight);
    color: white;
    padding: 1rem;
    text-align: center;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.content_about .info {
    font-size: 1.8rem;
}

.intro-title a {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: bold;
    color: var(--color-main);
}

.article-small-home .article-title a {
    color: black;
    font-size: 1.6rem;
    font-weight: 700;
}

.banner-certification img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
}

.title-certification {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(119 119 119 / 50%);
    margin: 0;
    color: white;
    text-shadow: 3px 2px 0 #7A7A7A;
    font-size: clamp(2rem, 5vw, 7rem);
    text-transform: uppercase;
}

.name-certification {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.8rem;
}

.desc-certification {
    text-align: justify;
    margin-top: 1rem;
    font-size: 1.4rem;
}

@media (max-width: 1200px) {
    a.btn-menu-mobile:hover {
        color: #fff;
    }

    article.article-detail .title {
        font-size: 20px;
    }

    .setting-menu-pc>.container>.row>div:nth-child(1) {
        order: 2;
    }

    .setting-menu-pc>.container>.row>div:nth-child(2) {
        order: 1;
    }

    .setting-menu-pc>.container>.row>div:nth-child(3) {
        order: 3;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .setting-menu-pc>.container>.row>div {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .setting-menu-pc .entire-action-header a.btn-mini-cart {
        padding: 0.3rem 1rem;
    }

    .setting-menu-pc .entire-action-header a.btn-mini-cart span.title {
        display: none;
    }

    .setting-menu-pc .btn-menu-mobile:hover {
        color: #fff;
    }

    .setting-menu-pc .section-search {
        position: relative;
    }

    .setting-menu-pc .section-search span.icon {
        display: inline-block !important;
    }

    .setting-menu-pc .section-search form {
        position: absolute !important;
        width: 200px;
        right: 0;
        z-index: 8;
        display: none;
    }

    .setting-menu-pc .section-search:hover form {
        display: block;
    }
}

@media (max-width: 500px) {
    .setting-menu > .container > .row > div:nth-child(2) {
     
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 2rem;
    }
    
    .row-mobile .row > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.wrap-suggestion .item-search:hover a {
    color: var(--color-main);
}

.wrap-suggestion .item-search>a> .inter-content .name {
    font-size: 14px;
    line-height: 1.4;
}

.title-contact {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-fixed {
    z-index: 999;
    right: 25px;
    bottom: 95px;
    position: fixed;
    height: 60px;
    width: 60px;
    background: var(--color-main);
    border-radius: 50%;
    cursor: pointer;
}

.contact-fixed__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: var(--white);
    font-size: 10px;
    line-height: 11px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__button.show {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.contact-fixed__button i {
    font-size: 24px;
    margin-bottom: 2px;
}

.contact-fixed__pulsation {
    width: 84px;
    height: 84px;
    background-color: #b91e25;
    border-radius: 50px;
    position: absolute;
    left: -12px;
    top: -12px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite;
}

.contact-fixed__pulsation:nth-child(2n) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.contact-fixed__close {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: var(--white);
    font-size: 24px;
    -webkit-transform: rotate(180deg) scale(0);
    -ms-transform: rotate(180deg) scale(0);
    transform: rotate(180deg) scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__close.show {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.contact-fixed__list {
    background: center no-repeat var(--white);
    box-shadow: 0 0 10px rgb(0 0 0 / 60%);
    width: 235px;
    position: absolute;
    bottom: 80px;
    right: 0;
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 14px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 7px;
    -webkit-transform-origin: 80% 105%;
    -ms-transform-origin: 80% 105%;
    transform-origin: 80% 105%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-out .12s all;
    -o-transition: ease-out .12s all;
    transition: ease-out .12s all;
    z-index: 10000;
}

.contact-fixed__list:before {
    position: absolute;
    bottom: -7px;
    right: 25px;
    left: auto;
    display: inline-block!important;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    border-left: 8px solid transparent;
    content: '';
}

.contact-fixed__list.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__item {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    width: 100%;
    color: black;
}

.contact-fixed__item i {
    color: white;
}

.contact-fixed__item:hover {
    background-color: #eeeeee;
    color: var(--color-text);
}

.contact-fixed__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    background-color: var(--color-main);
    border-radius: 50%;
    padding: 8px;
}

.contact-fixed__item-icon img {
    filter: brightness(0) invert(1);
}

@keyframes arcontactus-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.article-item .title-left {
    font-size: clamp(2.2rem, 4vw, 4.5rem);
}

.title-section-introl {
    font-size: 19.2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wrapper-introl--content {
    padding: 20px 10%;
}

.wrapper-form {
    padding: 7%;
}

.footer-mid * {
    color: white !important;
}

.swiper-slide.item-service {
    border-radius: 12px;
    overflow: hidden;
}

.btc-vn img {
    width: 17rem;
}

/*CSS by quyettq*/
.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* SÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œ dÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ng */
.line-1 { -webkit-line-clamp: 1; }
.line-2 { -webkit-line-clamp: 2; }
.line-3 { -webkit-line-clamp: 3; }
.line-4 { -webkit-line-clamp: 4; }

.product-attribute-switch.image-switch .inner-product-attribute [class*="ratio-"] {
    border: 1px solid #ddd;
    transition: all .3s ease;
    overflow: hidden;
    border-radius: 6px;
}

.product-attribute-switch.image-switch .inner-product-attribute.active [class*="ratio-"],
.product-attribute-switch.image-switch .inner-product-attribute:first-child [class*="ratio-"] {
    border-color: var(--color-highlight);
}

.tab-pane .article-item .article-description {
    font-size: 16px;
}

.btn-branch {
    padding: 7.5px 0;
    font-size: 15px;
}

.btn-branch:hover {
    color: var(--color-main);
}

.post-date {
    display: none !important;
}

.section-project .article-item.swiper-slide {
    margin-bottom: 10px;
}

.section-project .article-item .inner-content,
.tab-content .left .article-item .inner-content {
    padding: 0 10px 10px;
}

.section-project .article-item .article-title {
    line-height: 1.3em;
    height: calc(2 * 1.3em);
}

.section-project .article-item .inner-image .img img,
.tab-content .left .article-item [class*="ratio-"],
.tab-content .left .article-item .inner-image .img img,
.section-project .article-item .inner-image [class*="ratio-"] {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.article-item.item-intro {
    box-shadow: none;
}

.title-partner p {
    color: var(--color-text);
}

.title-partner h3 {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 2.5rem;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.4;
}

.title-partner h3:before {
    background: var(--color-main) none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: inherit;
    text-align: center;
    width: 11rem;
}

.title-partner h3::after {
    bottom: -6px;
    color: var(--color-main);
    content: "\f19d";
    font-family: 'Font Awesome 6 Pro';
    font-size: 1.7rem;
    height: 1.7rem;
    left: 3.5rem;
    position: absolute;
    right: inherit;
    text-align: center;
    width: 4rem;
    z-index: 9;
    background: none 0px 0px repeat scroll rgb(255, 255, 255);
    margin: 0px auto;
    font-weight: 400;
}

.title-partner p.slogan {
    font-size: 1.8rem;
    text-align: justify;
    line-height: 1.4;
}

.font-weight-600 {
    font-weight: 600;
}

.rounded-5 {
    border-radius: 0.5rem;
}

.partner-section .item {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.partner-section .item:hover {
    box-shadow: 0px 10px 50px 0px rgb(26 46 85 / 10%);
}

.type-left .img {
    padding-top: 81%;
}

.item-intro .article-description.mb-5 {
    font-size: 1.8rem;
}

@media (min-width: 768px) {
    .btn-branch:not(.btn-branch-2) {
        text-align: left;
    }
    
    .btn-branch.btn-branch-2 {
        text-align: right;
    }
    .wrapper-introl .row:not(.flex-md-row-reverse) .ratio-16-9 {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    
    .wrapper-introl .flex-md-row-reverse .ratio-16-9 {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}
    
@media(max-width: 767.98px) {
    .wrapper-introl .ratio-16-9 {
        border-radius: 0;
    }
}

@media(min-width: 576px) {
    .tab-content .right .article-item [class*="ratio-"],
    .tab-content .right .article-item .inner-image .img img {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }    
}
/*End quyettq*/