/**
 * @Project NUKEVIET 4.x
 * @Author VINADES.,JSC <contact@vinades.vn>
 * @Copyright (C) 2014 VINADES.,JSC. All rights reserved
 * @License GNU/GPL version 2 or any later version
 * @Createdate 31/05/2010, 00:36
 */


/* Các tùy chỉnh CSS của giao diện nên để vào đây */

.about-us {
    padding: 0 0 90px 0;
}

.p-about {
    font-size: 20px;
}

.blog-detail .short-desc ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5px 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dcdcdc;
}

.blog-detail .short-desc ul li {
    width: calc(30%);
    font-size: 18px;
    margin: 5px 0;
}

.blog-detail .short-desc ul li:first-child,
.blog-detail .short-desc ul li:nth-child(2),
.blog-detail .short-desc ul li:nth-child(3) {
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-detail .short-desc p {
    font-size: 18px;
    margin-bottom: 20px;
}

.banner-slider .banner-item {
    position: relative;
}

.banner-slider .banner-item::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, transparent 35%, rgba(2, 119, 189, 1) 100%);
    content: "";
}

.banner-slider .slick-slide {
    margin: 0;
}

.banner-slider .banner-item .box-content {
    position: absolute;
    z-index: 2;
    width: min(1250px, calc(100% - 30px));
    content: "";
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.banner-slider .banner-item .box-content h2 {
    font-size: 55px;
    color: #fff;
    margin-bottom: 26px;
}

.banner-slider .banner-item .box-content .banner-bottom__text {
    background-color: #fff;
    margin-left: auto;
    max-width: 505px;
    padding: 30px 35px 25px;
    border-radius: 0 20px 20px;
    position: relative;
}

.banner-slider .banner-item .box-content .banner-bottom__text p {
    color: var(--fs-color-primary);
    text-align: justify;
    margin-bottom: 16px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.home-projects .box-title {
    text-align: center;
}

.home-projects .menu-projects .tabs {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.home-projects .menu-projects .tabs button {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    color: #000;
    position: relative;
}

.block_title .sub-title>* {
    color: #000;
}

.header-inner .menu-list li a {
    color: #000;
}

.home-projects .menu-projects .tabs button::before {
    content: '';
    height: 2px !important;
    background-color: #E3322B !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    opacity: 0;
}

.home-projects .menu-projects .tabs button:hover:before,
.home-projects .menu-projects .tabs button.active::before {
    opacity: 1;
    width: 100% !important;
}

.home-projects .menu-projects .tabs button.active {
    color: var(--fs-color-primary);
}

.home-projects .slick-slide .projects-slider-item {
    position: relative;
    height: 100%;
}

.home-projects .slick-slide:not(.slick-active) .projects-slider-item {
    padding: 0 0 85% !important;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    pointer-events: none;
    opacity: .8;
}

.home-projects .slick-slide.slick-active .projects-slider-item {
    padding: 0 0 125% !important;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.home-projects .item {
    position: relative;
    padding: 12px !important;
    height: auto;
    margin: 0;
}

.home-projects .box-main {
    position: absolute;
    inset: 0;
}

.home-projects .item .box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    padding: 40px;
    padding-bottom: 20px;
    padding-top: 20px;
    z-index: 999999;
}

.box-title h6,
.block_title h6 {
    font-size: 36px;
    margin-bottom: 10px;
}

@media (max-width:996px) {
    .box-title h6,
    .block_title h6 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .banner-item .box-content .banner-bottom {
        display: none;
    }
    .banner-slider .banner-item .box-content h2 {
        font-size: 55px;
        color: #fff;
        margin-bottom: 26px;
        text-align: center;
        font-size: 24px !important;
    }
    .section_about .about-left .radius-corner {
        display: none;
    }
}

.home-projects .projects-slider-item {
    border-radius: 10px;
    overflow: hidden;
}

.menu-projects .item .box-content .title h4 {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 0;
    overflow: hidden;
    margin-bottom: 10px;
    text-transform: uppercase;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 63px;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.menu-projects .item .box-content ul li {
    margin-bottom: 10px;
    list-style: disc;
}

.menu-projects .item .box-content .title h4 a {
    color: #fff;
}

.menu-projects .item .box-content .content .info li {
    display: flex;
    margin-bottom: 10px;
    gap: 5px;
    align-items: center;
}

.menu-projects .item .box-content .content {
    max-height: 0;
    -webkit-transition: max-height .5s ease-in-out;
    -o-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
    overflow: hidden;
}

.menu-projects .slick-slide.slick-active.item:hover .box-content .content {
    max-height: 200px;
    -webkit-transition: max-height .5s ease-in-out;
    -o-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
}

.menu-projects .item .box-content .content .info {
    padding-left: 0 !important;
    padding-top: 15px;
    margin-bottom: 20px;
}

.menu-projects .item .box-content .content .info li p {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-height: 24px;
}

.menu-projects .item .box-content svg {
    width: 20px !important;
    height: 20px !important;
}

.menu-projects .item .box-content svg g path {
    stroke: #fff;
}

.menu-projects .item .box-img {
    aspect-ratio: 5/6;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.menu-projects .item .projects-slider-item>a {
    position: absolute;
    inset: 0;
    z-index: 3;
    content: "";
}

.menu-projects .item .box-content {
    background-image: linear-gradient(0deg, #333 0, rgba(0, 0, 0, 0) 100%);
}

.menu-projects .item .box-img img {
    height: 100%;
    object-fit: cover;
    transition: all ease 700ms;
}

.menu-projects .item:hover .box-img img {
    transform: scale(1.3);
}

.menu-projects .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu-projects .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    max-width: 60%;
    width: 100%;
    bottom: 0;
    margin: 30px auto auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu-projects .slick-dots li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    height: inherit;
    margin: 0;
}

.menu-projects .slick-dots li button {
    padding-top: 0;
    height: 5px;
    width: 100%;
    background-color: #d8d8dd;
    margin: 0;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.menu-projects .slick-dots li.slick-active button {
    background: var(--fs-color-primary);
}

.menu-projects .slick-dots li button::before {
    display: none;
}

.banner-slider .slick-arrow,
.menu-projects .slick-arrow {
    border-radius: 0;
    border: 0;
    opacity: 1;
}

.banner-slider .slick-arrow::before {
    color: var(--cl-primary);
}

.banner-slider .slick-arrow.slick-prev {
    left: 15px;
}

.menu-projects .slick-arrow.slick-prev {
    left: 50px;
}

.menu-projects .slick-arrow.slick-next {
    right: 50px;
}

.banner-slider .slick-arrow.slick-next {
    right: 15px;
}

.banner-slider .slick-arrow.slick-prev::before,
.menu-projects .slick-arrow.slick-prev::before {
    content: "\f0d9";
    font-size: 40px;
    font-family: fontawesome;
}

.banner-slider .slick-arrow.slick-next::before,
.menu-projects .slick-arrow.slick-next::before {
    content: "\f0da";
    font-size: 40px;
    font-family: fontawesome;
}

.home-about {
    padding-top: 40px;
    padding-bottom: 320px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #fff;
    background-image: url(/themes/bds/assets/images/contractors-bg.png);
}

.home-about .box-title {
    text-align: center;
    margin-bottom: 40px;
}

.home-about .box-title h2 {
    margin-bottom: 20px;
}

.home-about .slogan {
    font-size: 24px;
    color: #183e6b;
    max-width: 870px;
    margin: 0 auto;
}

@media (max-width:996px) {
    .home-about .slogan {
        font-size: 16px;
    }
}

.home-about .wraper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px 30px;
}

.home-about .wraper .box-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
    margin-bottom: 0;
    padding: 0 10px;
}

.home-about .wraper .box-item .icon {
    margin-top: 15px;
}

.home-about .wraper .box-item .d-flex {
    gap: 10px;
}

.vuta-container {
    width: min(1320px, 100%);
}

.home-about .wraper .box-item .d-flex .content p {
    font-size: 40px;
    text-transform: uppercase;
    color: var(--fs-color-primary);
    font-weight: 700;
}

.home-about .wraper .box-item .d-flex .content span {
    font-size: 17px;
    margin-bottom: 1rem;
    color: #215695;
}

.home-about .box-btn {
    margin-bottom: 40px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.home-about-slider .item {
    position: relative;
}

.home-about-slider .item .box-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 100%;
    padding: 0 35px;
}

.home-about-slider .item .box-content h4 {
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.home-about-slider .item .home-about-item>a {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.home-about-slider .slick-arrow {
    border-radius: 0;
    border: 0;
    opacity: 1;
}

.home-about-slider .slick-arrow.slick-prev {
    left: -40px;
}

.home-about-slider .slick-arrow.slick-next {
    right: -40px;
}

.home-about-slider .slick-arrow.slick-prev::before {
    content: "\f0d9";
    font-size: 40px;
    color: var(--fs-color-primary);
    font-family: fontawesome;
}

.home-about-slider .slick-arrow.slick-next::before {
    content: "\f0da";
    font-size: 40px;
    color: var(--fs-color-primary);
    font-family: fontawesome;
}

.home-about-slider .item .home-about-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.home-about-slider .item .home-about-item::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
}

.home-about-slider .item:hover .home-about-item::before {
    -webkit-animation: shine .95s;
    animation: shine .95s;
}

@keyframes shine {
    100% {
        left: 125%
    }
}

.home-about-slider .item .box-img img {
    transition: all ease 0.7s;
}

.home-about-slider .item:hover .box-img img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.home-about-slider .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    max-width: 60%;
    width: 100%;
    bottom: 0;
    margin: 30px auto auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.home-about-slider .slick-dots li {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    height: inherit;
    margin: 0;
}

.home-about-slider .slick-dots li button {
    padding-top: 0;
    height: 5px;
    width: 100%;
    background-color: #d8d8dd;
    margin: 0;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.home-about-slider .slick-dots li.slick-active button {
    background: var(--fs-color-primary);
}

.home-about-slider .slick-dots li button::before {
    display: none;
}

.home-brand .box-title {
    text-align: center;
}

.home-brand .box-brand-slider {
    padding: 10px 80px;
    background: #fff;
    -webkit-box-shadow: 0 4px 20px rgb(0 0 0/15%);
    box-shadow: 0 4px 20px rgb(0 0 0/15%);
    position: relative;
}

.home-brand .slick-arrow {
    border-radius: 0;
    border: 0;
    opacity: 1;
}

.home-brand .slick-arrow.slick-prev {
    left: -40px;
}

.home-brand .slick-arrow.slick-next {
    right: -40px;
}

.home-brand .slick-arrow.slick-prev::before {
    content: "\f0d9";
    font-size: 40px;
    color: var(--fs-color-primary);
    font-family: fontawesome;
}

.home-brand .slick-arrow.slick-next::before {
    content: "\f0da";
    font-size: 40px;
    color: var(--fs-color-primary);
    font-family: fontawesome;
}



.home-brand .box-img img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}

.home-brand .item {
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 5px;
}

.home-brand .item .box-img {
    transition: all ease 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.home-brand .item .box-img::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
}

.home-brand .item:hover .box-img {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, .15);
    -webkit-filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, .15));
    filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, .15));
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.home-brand .item:hover .box-img::before {
    -webkit-animation: shine .95s;
    animation: shine .95s;
}

.home-brand {
    margin-top: -280px;
    padding-bottom: 24px;
}

.section_vmission {
    padding-top: 100px;
}

.blog-item:hover svg g path {
    fill: var(--cl-primary) !important;
}

@media screen and (max-width: 996px) {
    .section_vmission {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 996px) {
    .vmission-item p:nth-child(1) {
        font-size: 20px;
    }
}

@media (max-width:996px) {
    .home-projects {
        padding-left: 15px;
        padding-right: 15px;
    }
    .home-projects .box-title h2 {
        text-align: center;
        justify-content: center;
    }
    .home-projects .menu-projects .tabs {
        flex-wrap: nowrap;
        overflow-y: scroll;
        justify-content: center;
        margin-bottom: 20px;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .home-projects .item {
        padding: 0 !important;
    }
    .home-projects .slick-slide:not(.slick-active) .projects-slider-item {
        padding: 0 0 100% !important;
    }
    .home-projects .slick-slide.slick-active .projects-slider-item {
        padding: 0 0 100% !important;
    }
    .menu-projects .slick-arrow.slick-prev {
        left: 10px;
    }
    .menu-projects .slick-arrow.slick-next {
        right: 10px;
    }
    .menu-projects .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    .home-about .wraper {
        justify-content: center;
    }
    .home-about .wraper .box-item {
        width: 50%;
        margin-bottom: 10px;
    }
    .home-about .wraper .box-item .icon {
        height: 40px;
        width: 40px;
        flex-shrink: 0;
    }
    .home-about {
        padding-bottom: 180px;
    }
    .home-brand .box-brand-slider {
        padding: 10px 30px;
    }
}

.projects-slider-item .content {
    color: #fff;
}

.section_about .about-left {
    border-top-right-radius: 50px;
}

.vuta-container .header-search a {
    color: #000;
}

.vuta-container .header-search a:hover {
    color: #215695;
}

.nav-2 {
    display: flex;
    align-items: center;
    gap: 30px
}

.popup-search {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(0, 0, 0, .9);
    top: 0;
    transition: transform .7s ease;
    display: none
}

.popup-search .popup-content {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative
}

.popup-search .close-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    font-weight: 700;
    display: flex;
    height: 24px;
    width: 24px;
    display: block;
    text-align: center;
    line-height: 16px;
    border-radius: 50%;
    border: 2px #fff solid;
    top: 15px;
    font-size: 15px;
    cursor: pointer
}

.popup-search .form-search {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: min(600px, 100% - 10px)
}

.popup-search .form-search form {
    position: relative
}

.popup-search .form-search input {
    background: #fff;
    border: none;
    outline: 0;
    height: 60px;
    line-height: 30px;
    font-size: 16px;
    color: #272727;
    padding: 15px 30px;
    width: 100%
}

.popup-search .form-search button {
    position: absolute;
    background: var(--primary);
    border: none;
    height: 60px;
    width: 60px;
    color: #fff;
    top: 0;
    right: 0;
    transition: all ease .4s
}

.popup-search .form-search button img {
    filter: brightness(0) invert(1)
}

.popup-search .result {
    width: 100%
}

.popup-search .form-search button:hover {
    opacity: .8
}

.breadcrums ul {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.feedback-slider-2 .item .logo {
    max-height: unset;
    height: 100px;
    width: 100%;
    text-align: center;
}

.feedback-slider-2 .item .feedback-item {
    box-shadow: 0px 4px 20px rgb(0 0 0 / 15%);
    border-radius: 10px;
}

.feedback-slider-2 .item .logo {
    margin-bottom: 20px;
}

.feedback-slider-2 .item .logo img {
    width: auto;
    max-height: 100%;
    margin: 0 auto;
}

.feedback-slider-2 .item {
    text-align: center;
}

.feedback-slider-2 .item {
    margin: 10px;
}

.feedback-slider-2 .item h4 {
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.feedback-slider-2 .item p {
    font-size: 14px;
    text-align: justify;
}

.home-feedback {
    padding-top: 40px;
}

.hero-title .thint-font {
    font-size: 24px;
}

@media (max-width:996px) {
    .hero-title .thint-font {
        font-size: 16px;
    }
}

.banner-slider .banner-item .box-content .banner-bottom__text p {
    font-size: 20px;
}

.banner-slider .banner-item::before {
    background: rgba(0, 0, 0, .2);
}

.section_about .about-left__quantity .text-quantity {
    text-align: center;
}

.section_about .about-left__quantity .text-quantity p:nth-child(1) {
    font-size: 5.5em;
}

.box-title h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}

.home-blog-2 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.home-feedback .hero-title {
    text-align: center;
}

.home-feedback {
    padding-top: 60px;
}

.home-products {
    padding-top: 60px;
}

.home-feedback .hero-title h6 {
    font-size: 36px;
    font-weight: 700 !important;
}

.home-blog-2 .box-title {
    text-align: center;
}

.home-feedback .box-title h2 {
    text-transform: uppercase;
    font-size: 36px;
}

.products-item .box-content {
    background: var(--cl-primary);
}

.products-item .box-content h4 a {
    color: #fff;
}

.blog-detail .top-detail ul li {
    color: #fff;
}

.section_banner .section-content .banner-top__heading {
    font-size: 1.5rem;
}

.menu-projects .item .box-content .content p {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.button-service:hover {
    transform: scale(1.05);
}

.section_vmission .vmission-item p:nth-child(1) {
    font-size: 2em;
}

.feedback-slider-2 {
    margin-bottom: 40px;
    margin-left: -10px;
    margin-right: -10px;
}

.feedback-slider-2 .feedback-item {
    margin-top: 0;
}

.menu-projects .item .box-content .content .box-btn {
    margin-top: 10px;
}

.menu-projects .item .box-content .content .box-btn a span {
    background: transparent;
    border: 1px solid #fff;
}

.menu-projects .item .box-content .content .box-btn a .fa-arrow-right {
    background: transparent;
    border: 1px solid #fff;
}

.menu-projects .item .box-content .content .box-btn a {
    position: relative;
    z-index: 9999;
}

.home-projects .item .box-content .box-btn a:hover i,
.home-projects .item .box-content .box-btn a:hover span {
    background: var(--cl-primary) !important;
    border: 1px solid var(--cl-primary) !important;
}

.box-title h6 {
    color: var(--cl-primary);
}

.blog-item svg g path {
    fill: #fff !important;
}

.home-blog .blog-item {
    background: #fff;
}

.home-blog .blog-item:hover {
    background: var(--cl-primary);
}

.banner-page {
    min-height: 500px;
}

.banner-page .fill {
    background-image: unset;
}

#footer h3 {
    text-transform: uppercase;
}

.products-item .box-content h4 {
    font-size: 20px;
    text-transform: uppercase;
}

@media (max-width:996px) {
    .products-item .box-content h4 {
        font-size: 16px;
    }
    .home-feedback {
        padding-top: 30px;
    }
    .banner-page {
        min-height: 300px;
    }
    .home-feedback .box-title {
        text-align: center;
    }
    .home-feedback .box-title h2 {
        font-size: 24px !important;
    }
    .section_vmission .button.primary {
        display: none;
    }
    .banner-slider .banner-item .box-content .banner-bottom__text p {
        font-size: 16px;
    }
}

@media (max-width:575px) {
    .section_about .about-left__quantity .text-quantity p:nth-child(1) {
        font-size: 3em;
    }
    .section_about .about-left__quantity .text-quantity {
        text-align: center;
    }
    .thint-font {
        font-size: 18px !important;
    }
    .section_about .about-right {
        padding-top: 15px;
    }
    .section_about .about-right p {
        font-size: 16px;
    }
    .slick-arrow::before {
        font-size: 20px !important;
    }
    .home-products .products-item {
        border-radius: 10px;
        overflow: hidden;
    }
    .about-1 .vuta-row [class^="vuta-col-"]:nth-child(2) .vmission-item p:first-child {
        font-size: 20px;
    }
    .home-products .products-item .box-img {
        border-radius: 0;
    }
    .home-products .products-item .box-content {
        font-size: 14px;
        width: 100%;
        transform: 0;
        bottom: 0;
        left: unset;
        transform: unset;
        position: inherit;
        border-radius: 0 0 10px 10px;
    }
    .home-products .products-item .box-content h4 {
        font-size: 14px;
    }
}

.home-blog-2 .blog-item-2 {
    position: relative;
}

.home-blog-2 .blog-item-2 .box-content {
    position: absolute;
    bottom: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(12, 1fr);
    /* chia nhỏ hơn để chia tỷ lệ mịn hơn */
    gap: 10px;
    max-height: 480px;
}


/* --- layout --- */


/* item 1: full cột 1, cao nhất = 12 hàng */

.grid .blog-item-2.item:nth-child(1) {
    grid-column: 1;
    grid-row: span 12;
}

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


/* item 2: cao 2/3 item 1 = 8 hàng */

.grid .blog-item-2.item:nth-child(2) {
    grid-column: 2;
    grid-row: span 8;
}


/* item 3: cao 1/2 item 1 = 6 hàng */

.grid .blog-item-2.item:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / span 6;
}


/* item 4 + 5: nằm cột 2, dưới item 2, mỗi cái cao = 4 hàng, chia đôi width */

.grid .blog-item-2.item:nth-child(4),
.grid .blog-item-2.item:nth-child(5) {
    grid-column: 2;
    grid-row: 9 / span 4;
    width: calc(50% - 5px);
}

.grid .blog-item-2.item:nth-child(4) {
    justify-self: start;
}

.grid .blog-item-2.item:nth-child(5) {
    justify-self: end;
}


/* item 6 + 7: nằm dưới item 3, cùng chiều cao (3 hàng mỗi cái) */

.grid .blog-item-2.item:nth-child(6) {
    grid-column: 3;
    grid-row: 7 / span 3;
}

.grid .blog-item-2.item:nth-child(7) {
    grid-column: 3;
    grid-row: 10 / span 3;
}

.blog-item-2 .box-img {
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.blog-item-2 .box-img img {
    height: 100%;
    transition: all ease 0.4s;
}

.grid .blog-item-2:hover .box-img img {
    transform: scale(1.1);
}

.grid .blog-item-2::before {
    content: '';
    opacity: 1;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(19, 50, 86, 0)), to(var(--cl-second)));
    background: -o-linear-gradient(top, rgba(19, 50, 86, 0) 50%, var(--cl-second) 100%);
    background: linear-gradient(180deg, rgba(19, 50, 86, 0) 50%, var(--cl-second) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 1s all;
    -moz-transition: 1s all;
    -ms-transition: 1s all;
    -o-transition: 1s all;
    transition: 1s all;
    pointer-events: none;
    z-index: 1;
}

.blog-item-2>a {
    position: absolute;
    inset: 0;
    z-index: 4;
    content: "";
}

.blog-item-2::after {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
}

.blog-item-2:hover:after {
    -webkit-animation: shine .95s;
    animation: shine .95s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.grid .blog-item-2 .box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 30px 30px 20px;
    margin: 0;
    background-color: transparent;
}

.blog-item-2 .box-content .content {
    display: none;
}

.blog-item-2 .box-content h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.blog-item-2 .box-content .date {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.blog-item-2:nth-child(4) .box-content h4,
.blog-item-2:nth-child(5) .box-content h4 {
    font-size: 14px;
    font-weight: 400;
}

.blog-item-2:nth-child(4) .box-content,
.blog-item-2:nth-child(5) .box-content {
    padding: 10px;
}

.blog-item-2:nth-child(7)::before,
.blog-item-2:nth-child(6)::before {
    display: none;
}

.blog-item-2:nth-child(7),
.blog-item-2:nth-child(6) {
    display: flex;
}

.blog-item-2:nth-child(7) .box-content .content,
.blog-item-2:nth-child(6) .box-content .content {
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.blog-item-2:nth-child(7) .box-content,
.blog-item-2:nth-child(6) .box-content {
    padding: 0;
    padding-left: 10px;
}

.blog-item-2:nth-child(7) .box-content h4,
.blog-item-2:nth-child(6) .box-content h4 {
    font-size: 14px;
    color: #000;
    transition: all ease 0.4s;
}

.blog-item-2:nth-child(6):hover .box-content h4,
.blog-item-2:nth-child(7):hover .box-content h4 {
    color: var(--cl-primary);
}

.blog-item-2:nth-child(7) .box-content .date,
.blog-item-2:nth-child(6) .box-content .date {
    color: #000;
}

.blog-item-2:nth-child(7) .box-content .content,
.blog-item-2:nth-child(6) .box-content .content {
    font-size: 14px;
}

.blog-item-2:nth-child(7) .box-img,
.blog-item-2:nth-child(6) .box-img {
    height: 112px;
    width: 120px;
    flex-shrink: 0;
}

.blog-item-2:nth-child(6) .box-content,
.blog-item-2:nth-child(7) .box-content {
    position: unset;
}

.section_about .sub-title h6 {
    color: var(--cl-primary);
    opacity: 1;
}

.home-products .box-title {
    text-align: center;
}

.home-projects .menu-projects .tabs button {
    font-size: 18px;
    text-transform: uppercase;
}

article figure {
    background: var(--cl-primary);
    margin-bottom: 1rem;
    padding: 0;
}

article figure figcaption,
table caption {
    background: var(--cl-second) !important;
    color: #fff !important;
    font-size: 16px;
}

article figure figcaption,
table caption {
    background: var(--cl-primary);
    color: #fff !important;
}

.blog-detail .box-detail .toc-wrap .toc-title {
    background: var(--cl-third);
}

.section_contact .box-contact .box-title {
    text-align: center;
    position: relative;
}

.section_contact .box-contact .box-title h2 {
    color: #fff;
    margin-bottom: 20px;
}

.section_contact .box-contact .box-title p {
    font-size: 24px;
    color: rgba(255, 255, 255, .7);
}

@media (max-width:996px) {
    .section_contact .box-contact .box-title p {
        font-size: 16px;
    }
}

.section_contact .box-contact {
    max-width: 1000px;
    margin: 0 auto;
}

.about-us .box-img img {
    border-radius: 0;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top center;
}

.about-us .content-2 {
    max-height: 350px;
    overflow-y: scroll;
    position: relative;
    padding-top: 70px;
}

.about-us .box-title {
    margin-bottom: 0;
}

.about-us .content-2::before {
    position: absolute;
    content: "\f10d";
    font-family: fontawesome;
    color: #888;
    font-size: 40px;
    top: 0px;
}

.about-us .title-2 {
    padding-top: 70px;
    position: relative;
    padding-bottom: 10px;
}

.about-us .title-2::before {
    position: absolute;
    content: "\f10e";
    font-family: fontawesome;
    color: #888;
    font-size: 60px;
    top: 0;
    right: 0;
}

.about-us .vuta-row .title {
    padding: 0px 0px 35px 35px;
}

.about-us .content-2 p {
    text-align: justify;
}

.section_contact {
    padding: 40px 0 60px;
}

@media (max-width:996px) {
    .grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        max-height: unset;
    }
    .grid .blog-item-2.item {
        width: calc(50% - 5px);
    }
    .grid .blog-item-2.item:first-child {
        width: 100%;
    }
    .grid .blog-item-2.item:nth-child(6),
    .grid .blog-item-2.item:nth-child(7) {
        width: 100%;
    }
    .home-blog-2 {
        padding: 20px 0 40px;
    }
    .box-title h6 {
        font-size: 20px !important;
    }
    .box-title h2 {
        font-size: 20px !important;
    }
    .blog-item-2 .box-content h4 {
        font-size: 16px;
    }
    .blog-item-2 .box-content {
        padding: 10px;
    }
    .section_contact {
        padding: 20px 0 40px;
    }
    .home-products {
        padding-top: 20px;
    }
}

.enjoin {
    position: relative;
    background-color: var(--cl-second);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 100%;
    padding: 70px 0 90px;
    background-image: url(../assets/images/bg-enjoin.jpg);
    background-size: 50% 100%;
}

.enjoin::before {
    z-index: 1;
    content: '';
    background: -webkit-gradient(linear, right top, left top, color-stop(35.67%, rgba(19, 50, 86, 0)), to(#183e6b));
    background: -o-linear-gradient(right, rgba(19, 50, 86, 0) 35.67%, var(--cl-second) 100%);
    background: linear-gradient(-90deg, rgba(19, 50, 86, 0) 35.67%, var(--cl-second) 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
    left: 50%;
}

.section_copyright .text p {
    opacity: 1 !important;
    color: #fff !important;
}

.enjoin .bg {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.header-logo img {
    width: 200px;
}

header#header {
    min-height: unset;
}

.header-main {
    padding: 10px 0;
}

#footer .footer-main__logo {
    text-align: center;
}

#footer .footer-main__logo img {
    width: 150px;
    margin: 0 auto;
}

.enjoin .bg img {
    height: 100%;
}

.section_contact .bg img {
    height: 100%;
}

.enjoin .box-item .box-img {
    height: 320px;
}

.enjoin .box-item .box-img img {
    height: 100%;
}

.enjoin .box-item .box-content h4 {
    text-align: center;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.enjoin .vuta-container {
    position: relative;
    z-index: 3;
}

.enjoin .box-item .box-img {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.enjoin .box-item .box-img::after {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
}

.enjoin .box-item:hover .box-img::after {
    -webkit-animation: shine .95s;
    animation: shine .95s;
}

.enjoin .box-item .box-img .content {
    position: absolute;
    bottom: 0;
    padding: 28px 10px;
    width: 100%;
    z-index: 3;
    background-image: linear-gradient(0deg, #616161 0, rgba(255, 0, 0, 0) 100%);
}

.enjoin .box-item .box-img .content p {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
}

.enjoin .box-item .box-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
    position: relative;
    z-index: 5;
}

.enjoin .box-item .box-btn a {
    padding: 10px 15px;
    background: #ff0000;
    min-width: 170px;
    text-transform: uppercase;
    color: #fff;
    height: 40px;
    font-weight: 600;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    border: 1px solid #ff0000;
}

.enjoin .box-item .box-btn a:hover {
    background: #fff;
    border: 1px solid var(--cl-primary);
    color: var(--cl-primary);
}

@media (max-width:996px) {
    .enjoin {
        padding: 30px 0 20px;
        background-image: unset;
    }
    .enjoin .box-item {
        margin-bottom: 20px;
    }
    .enjoin .box-item .box-content h4 {
        font-size: 16px;
    }
}

.aside-item .blog-item-2,
.news-list .blog-item-2 {
    display: flex;
}

.aside-item .blog-item-2 .box-img,
.news-list .blog-item-2 .box-img {
    height: 112px;
    width: 120px;
    flex-shrink: 0;
}

.aside-item .blog-item-2 .box-content h4 {
    color: #000;
    font-size: 14px;
    transition: all ease 0.4s;
}

.aside-item .blog-item-2 .box-content,
.news-list .blog-item-2 .box-content {
    position: unset;
    padding-left: 15px;
}

.aside-itemt .blog-item-2 .box-content h4,
.news-list .blog-item-2 .box-content h4 {
    color: #000;
    font-size: 14px;
    transition: all ease 0.4s;
}

.aside-item .blog-item-2 .box-content .content,
.news-list .blog-item-2 .box-content .content {
    display: block;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.aside-item .blog-item-2 .box-content .date,
.news-list .blog-item-2 .box-content .date {
    color: #000;
    font-weight: 400;
}

.aside-item .blog-item-2 .box-content .content p,
.news-list .blog-item-2 .box-content .content p {
    font-size: 14px;
}

.aside-item .blog-item-2,
.news-list .blog-item-2 {
    margin-bottom: 15px;
}

.aside-item .blog-item-2,
.news-list .blog-item-2 {
    position: relative;
}

.aside-item .blog-item-2 a,
.news-list .blog-item-2 a {
    position: absolute;
    inset: 1;
    content: "";
}

.aside-item .blog-item-2:hover img,
.news-list .blog-item-2:hover img {
    transform: scale(1, 1);
}

.aside-item .blog-item-2:hover .box-content h4,
.news-list .blog-item-2:hover .box-content h4 {
    color: var(--cl-primary);
}

.blog.member {
    padding: 60px 0;
}

.blog.member .home-blog-2 {
    padding: 0 0 20px;
}

.blog.member .home-blog-2 .box-title {
    margin-bottom: 30px;
}

.breadcrumb ul {
    padding: 10px 0;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.breadcrumb ul li {
    position: relative;
}

.breadcrumb ul li::before {
    content: "/";
    right: -12px;
    position: absolute;
}

.breadcrumb ul li:last-child::before {
    display: none;
}

.breadcrumb ul li a {
    color: #131313;
}

.breadcrumb ul li:last-child a {
    color: var(--cl-primary);
}

.blog-detail-2 {
    padding: 0px 0 20px;
}

.blog-detail-2 .date {
    margin-bottom: 10px;
    display: block;
}

.blog-detail-2 .detail-content {
    padding: 0;
    max-width: 100%;
}

.blog-detail-2 .main-detail h1 {
    font-size: 28px;
    color: var(--cl-primary);
    margin-bottom: 10px;
}

.aside .aside-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.photo {
    padding: 40px 0;
}

.projects-item .box-img {
    aspect-ratio: 3/2;
    border-radius: 8px;
    overflow: hidden;
}

.projects-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.projects-item>a {
    position: absolute;
    inset: 0;
    z-index: 3;
    content: "";
}

.projects-item .box-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.projects-item .box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    padding: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-bottom: 20px;
    padding-top: 20px;
    z-index: 99;
    background-image: linear-gradient(0deg, #333 0, rgba(0, 0, 0, 0) 100%);
}

.projects-item .box-content h4 a {
    color: #fff;
}

.projects-item .box-content .content {
    max-height: 0;
    -webkit-transition: max-height .5s ease-in-out;
    -o-transition: max-height .5s ease-in-out;
    transition: max-height .5s ease-in-out;
    overflow: hidden;
}

.projects-item .box-content .content .desc {
    overflow: hidden;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.projects-item:hover .box-content .content {
    max-height: 200px;
}

.projects-item .box-content .content .box-btn {
    padding-top: 10px;
}

.projects-item .box-content .content .box-btn a span,
.projects-item .box-content .content .box-btn a i {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.projects-item .box-content .content .box-btn a:hover span,
.projects-item .box-content .content .box-btn a:hover i {
    background: var(--cl-primary);
    border: 1px solid var(--cl-primary);
    color: #fff;
}

.projects-item .box-content .content {
    position: relative;
    z-index: 5;
}

.projects-item {
    margin-bottom: 20px;
}

@media (max-width:996px) {
    .blog-detail-2 .main-detail h1 {
        font-size: 20px;
    }
    .aside {
        padding-top: 15px;
    }
    .aside .aside-item h3 {
        font-size: 18px;
    }
}

.wraper-image .wraper {
    position: relative;
}

.images-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin: auto;
}

.images-grid-container .image-grid-item {
    display: none;
}

.images-grid-container .image-grid-item img {
    height: 100%;
}

.bookhouse-detail {
    padding: 40px 0;
}

.products-image .view-all {
    background: rgba(0, 0, 0, .4);
    border: 1px solid rgba(255, 255, 255, .7);
    box-sizing: border-box;
    border-radius: 40px !important;
    color: var(--white);
    font-size: 16px;
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.images-grid-container .image-grid-item:first-child,
.images-grid-container .image-grid-item:nth-child(2),
.images-grid-container .image-grid-item:nth-child(3),
.images-grid-container .image-grid-item:nth-child(4),
.images-grid-container .image-grid-item:nth-child(5) {
    display: block;
}

.images-grid-container .image-grid-item:first-child {
    max-height: 510px;
}

.images-grid-container .image-grid-item:first-child {
    grid-row: span 2;
    grid-column: span 1;
}

.images-grid-container .image-grid-item {
    max-height: 250px;
}

#detail h1 {
    color: var(--cl-primary);
    font-size: 28px;
}

@media (max-width:996px) {
    #detail h1 {
        font-size: 24px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .projects-item h4 {
        font-size: 16px;
    }
}

#detail .box-details {
    border-bottom: 1px solid #ececec;
    margin-bottom: 10px;
}

#detail .other h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.products-item {
    border-radius: 10px !important;
    overflow: hidden;
}

.products-item .box-content {
    position: unset;
    width: 100%;
    border-radius: 0;
    left: 0;
    background: var(--cl-primary);
    transform: unset;
}

.products-item .box-content h3 {
    font-size: 14px;
    margin-bottom: 0px;
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.products-item h3 a {
    color: #fff;
}

.products-item .box-content h3 a,
.products-item .box-content span {
    transition: all ease 0.4s;
    font-weight: 600;
}

.products-item .box-img {
    border-radius: 0;
}

.slick-track {
    margin-left: 0;
}

.products-slider {
    margin: 0 -15px;
}

.products-item:hover .box-content span {
    color: #fff;
}

.home-service .box-title {
    text-align: center;
}

.home-service .box-item .box-title-underline {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

.home-service .box-item .box-title-underline h2 a span {
    display: none;
}

.home-service .box-item .box-title-underline h2 {
    position: relative;
    text-transform: uppercase;
    color: var(--cl-second);
    padding-bottom: 8px;
    font-size: 20px;
    padding-left: 0;
}

.home-service .box-item .box-title-underline h2::before {
    height: 2px;
    width: 40px;
    background: var(--cl-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
}

.home-service .box-item .box-title-underline h2 a {
    color: var(--cl-second);
}

.home-service .box-item .box-title-underline .box-btn a {
    display: inline-flex;
    padding: 10px 30px;
    border-radius: 4px;
    border: 1px solid var(--cl-primary);
    color: var(--cl-primary);
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    gap: 10px;
}


/* .about-us {
    background-image: url(/themes/bds/assets/images/backgroup.jpg);
    background-size: cover;
    background-repeat: no-repeat;
} */

.home-service .box-item .box-title-underline .box-btn a:hover {
    background: var(--cl-primary);
    color: #fff;
}

.section_about {
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--cl-second);
}

.vmission-item {
    background: var(--cl-second);
}

@media (max-width:996px) {
    .home-service .box-item .box-title-underline h2 {
        max-width: 220px;
    }
    .home-service .box-item .box-title-underline .box-btn a {
        padding: 10px 20px;
    }
    .products-item .box-content {
        background: var(--cl-third);
        color: #fff;
    }
    .products-item .box-content h3 {
        font-size: 16px;
    }
    .products-item .box-content h3 a {
        color: #fff;
    }
    .about-us .vuta-row .title h3 {
        font-size: 22px;
        margin-bottom: 10px;
        color: var(--fs-color-primary);
    }
    .about-us .vuta-row .title {
        padding-bottom: 0px;
    }
}

.blog-detail-2 .detail-content ol {
    padding-left: 15px;
}

.blog-detail-2 .detail-content ol li {
    list-style: number;
    margin-bottom: 10px;
}

.blog-detail .detail-content article ul li p {
    margin-bottom: 0;
}

.blog-detail .detail-content article ul {
    margin-bottom: 10px;
}

article h2,
article h3 {
    font-size: 28px !important;
}

article h4 {
    font-size: 20px !important;
    font-weight: 600;
}

.blog-detail .detail-content article ul li {
    margin-bottom: 0;
}

.aside-item .blog-item-2 .box-content h4 {
    color: #000;
    font-size: 18px;
    transition: all ease 0.4s;
}

.aside-item .blog-item-2 .box-content .content,
.news-list .blog-item-2 .box-content .content {
    font-size: 18px;
    line-height: 1.3;
}

.catpage .blog-item-2 {
    display: block !important;
}
.catpage .blog-item-2 .box-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
.catpage .blog-item-2 .box-content {
    padding-left: 0;
    padding-top: 10px;
}
.catpage .blog-item-2 .box-content p{
    font-size: 20px !important;
}
.catpage .blog-item-2 .box-content span {
    font-size: 18px;
    color: #888 !important;
 }
.catpage .blog-item-2 .box-content h4 {
    font-size: 18px !important;
}
@media (max-width:996px) {
    article h2,
    article h3 {
        text-align: left;
    }
    article h4 {
        text-align: left;
    }
    .home-brand {
        margin-top: -230px;
        padding-bottom: 24px;
    }
    .home-about {
        padding-bottom: 210px;
    }

    .home-brand .slick-slide {
        margin: 0 8px;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    .home-brand .box-title {
    margin-bottom: 20px;
    }
}