html, body {
    overflow-x: hidden;
}

.statistical-website li {
    list-style: none;
    margin-bottom: 12px;
}

.top-right-me {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 11;
}

.view-status {
    background: rgb(0 0 0 / 52%);
    font-size: 15px;
    padding: 4px;
    border-radius: 5px;
    color: #fff;
}

.view-status i {
    margin-right: 5px;
}

/*Header*/
.header-main {
    /*background: url(../../assets/media/background/bg-header.png) no-repeat center center;*/
    background-size: 100% 100%;
    padding: 10px 0;
    background-color: var(--light);
}

.header-main>.container>.row {
    align-items: center;
}
/*End Header*/

/*Button right*/
.list-btn-fix {
    position: fixed;
    bottom: 114px;
    right: 24px;
    transform: translateY(-50%);
    z-index: 10;
}
.list-btn-fix img{
    width: 45px;
}


/*CALL NOW*/
.call-now {
    position: fixed;
    right: -4px;
    bottom: 62px;
    visibility: visible;
    background-color: transparent;
    width: 110px;
    height: 110px;
    cursor: pointer;
    z-index: 2000 !important;
}
.img-phone {
    width: 35px;
    height: 35px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    top: 40px;
    left: 40px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background-color: var(--color-main);
}
.small-circle {
    width: 60px;
    height: 60px;
    top: 28px;
    left: 28px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background-color: var(--color-main);
    opacity: .75 !important;
}
.big-circle{
    width: 90px;
    height: 90px;
    top: 12px;
    left: 12px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: .1;
    border-color: var(--color-main);
    opacity: .5;
}
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3);
    }
    
    50% {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
    
    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05);
    }
    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
    10%, 20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,
    -3deg
    );
        transform: scale3d(.9,.9,.9) rotate3d(0,0,1,
    -3deg
    );
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,
    3deg
    );
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,
    3deg
    );
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,
    -3deg
    );
        transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,
    -3deg
    );
    }
    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
    }
}
/*CALL NOW*/

/*Button right*/

/*Title*/
.styleTitle h2.NH-title {
    line-height: 27px;
    font-weight: 700;
    color: var(--dark);
    width: 100%;
    font-size: 18px;
    margin: 0;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
    font-family: UTM-Avo, Arial, Helvetica, sans-serif;
}

.styleTitle h2.NH-title span {
    color: var(--dark);
    position: relative;
    height: 40px;
    border-radius: 3px;
    font-size: 24px;
}

.styleTitle h2.NH-title::before {
    font-family: 'Line Awesome Free';
    font-weight: 900;
    content: "\f005";
    position: absolute;
    right: 0;
    height: 26px;
    left: 0;
    margin: auto;
    bottom: -22px;
    width: 26px;
    border-radius: 50%;
    color: var(--color-main);
    border: 1px solid var(--color-main);
    background: var(--white);
    font-size: 18px;
    line-height: 22px;
    text-align: center;
}

.styleTitle h2.NH-title::after {
    content: '';
    height: 6px;
    max-width: 25%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border-top: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
    bottom: -11px;
}

.subHeading {
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--dark);
}

.styleTitleWhite h2.NH-title span {
    color: var(--white);
}

.styleTitleWhite h2.NH-title::after {
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}

.styleTitleWhite .subHeading {
    color: var(--white);
}
/*End Title*/

/*About Us*/
.NH-info {
    margin-bottom: 30px;
}

.boxImgInfo img {
    width: 100%;
}

.boxContentInfo h3 {
    margin-top: 10px;
    font-size: 24px;
    color: var(--color-main);
    font-family: UTM-Avo, Arial, Helvetica, sans-serif;
}

.boxContentInfo__desc {
    color: var(--color-text);
    font-size: 16px;
}
/*End About Us*/

/*Lĩnh vực hoạt động*/
.bg-field {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.field__item {
    margin-bottom: 30px;
}

.field__item-head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.field__item-icon {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid var(--white);
    background: var(--color-main);
}

.field__item-icon i {
    height: 38px;
    width: 38px;
    margin-top: 1px;
    margin-left: 1px;
    line-height: 38px;
    text-align: center;
    font-size: 28px;
    color: var(--color-main);
    background: var(--white);
    border-radius: 50%;
}

.field__item-title {
    margin: 0;
    color: var(--white);
    font-size: 18px;
    line-height: 23px;
}

.field__item-desc {
    color: var(--white);
}
/*Hết Lĩnh vực hoạt động*/

/*Products*/
.product-item .inner-image:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    content: '';
    z-index: 10;
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    -webkit-transform: scale3d(2.2,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
    transform: scale3d(2.2,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-120%,0);
}

.product-item .inner-image:hover:before {
    webkit-transform: scale3d(2.2,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
    transform: scale3d(2.2,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,120%,0);
}

.product-item .inner-image img {
    transition: all 1s ease 0s;
}

.product-item .inner-image:hover img {
    transform: scale(1.1);
}

.product-item .inner-content .product-desc {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: var(--black);
}

.product-item .inner-content .product-desc p {
    margin-bottom: 0;
}
/*End Products*/

/*News*/
.bg-news {
    background-size: cover;
    background-repeat: no-repeat;
}
/*End News*/

/*Partners*/
.brand-infore {
    padding: 4px 10px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    overflow: hidden;
}

.brand-infore a {
    height: 100%;
    width: 100%;
}

.brand-section .brand-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
/*End Partners*/

/*Footer*/
.footer-copyright {
    background: var(--dark);
}
/*End Footer*/

/*Form Slide*/
.slider-form {
    position: relative;
}

.slider-form__main {
    position: absolute;
    z-index: 1;
    background: #ffffff5e;
    border: 4px solid #ddd;
    padding: 10px 50px;
    left: 75px;
    bottom: 50px;
    border-radius: 5%;
}

.slider-form__main input, .slider-form__main textarea {
    background: #ffffffab;
    border: 1px solid #ccc;
}

.slider-form, .slider-form .item img {
    height: 440px;
}
/*End Form Slide*/

.logo-section img {
    max-width: 85px;
}

/*Slide Banner Right*/
.slider-banner-right {
    border-top: 3px solid #f00;
}

.slider-banner-right .slider-section, .slider-banner-right .slider-section .item img {
    height: 458px;
}
/*End Slide Banner Right*/

.slider-video {
    overflow: hidden;
    background: #ebebeb;
    padding-top: 20px;
    padding-bottom: 20px;
    clear: left;
    border-top: 3px solid #f00;
}

.slider-video .styleTitle h2.NH-title span {
    font-size: 20px;
}

.category-right {
    background-color: var(--light);
    padding: 15px;
}

.category-right .categories-section {
    margin-bottom: 0;
}

.category-right .categories-section a {
    padding: 0;
}

.form-detail-product {
    border: 1px solid #cfd6e4;
    padding: 40px 28px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 12px 20px rgb(34 37 49 / 8%);
}

.form-detail-product h2 {
    text-align: center;
    margin: 15px 0;
    color: var(--color-main);
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
}

.product-title-detail {
    font-size: 30px;
    line-height: 1.4;
    font-weight: bold;
    color: var(--black);
}

.product-address-detail {
    margin-bottom: 20px;
    font-size: 15px;
    color: #222531;
    opacity: .7;
}

.product-detail-footer .nav li a.active {
    border: 1px solid #d0d0d0;
    border-bottom: 0;
}

.product-detail-footer .code {
    font-size: 17px;
    color: var(--black);
}

.product-description {
    font-size: 17px;
    color: var(--black);
}

.product-detail-info__box {
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border: 1px solid #cfd6e4;
    box-shadow: 0px 12px 20px rgb(34 37 49 / 8%);
    border-radius: 8px;
}

.product-detail-info__title {
    font-weight: 600;
    font-size: 22px;
    color: #222531;
    margin: 0 0 16px;
}

.product-detail-info__noti {
    font-weight: 600;
    font-size: 16px;
    color: #222531;
    margin: 0 0 16px;
}

.product-detail-info__noti i {
    font-size: 20px;
    color: var(--green);
}

.product-detail-call {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -.43px;
    background: var(--color-main);
    border-radius: 6px;
    color: var(--white);
    padding: 12px 30px;
    width: 100%;
    display: block;
    margin-bottom: 16px;
}

.product-detail-call:hover {
    color: var(--white);
}

.product-detail-send {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -.43px;
    background: var(--white);
    border: 0.5px solid var(--color-main);
    box-sizing: border-box;
    border-radius: 6px;
    color: var(--color-main);
    padding: 12px 30px;
    margin-bottom: 16px;
    width: 100%;
    display: block;
}

.product-detail-send:hover {
    background: var(--color-main);
    color: var(--white);
}

.is-mobile .view-small .article-item .article-title {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.social-html {
    width: 100%;
    float: left;
    padding: 14px 0 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom: none;
}

.social-html a {
    margin: 0 5px;
    display: inline-block;
}

.news-right {
    background: #ebebeb;
    padding-top: 20px;
    clear: left;
    border-top: 3px solid #f00;
}

.news-right .styleTitle h2.NH-title span {
    font-size: 20px;
}

.news-right .view-small .col-lg-4 {
    max-width: 100%;
    width: 100%;
    flex: 100%
}

.news-right .article-item {
    display: flex;
    padding: 10px;
    margin-bottom: 10px;
}

.news-right .view-small .article-item .inner-image {
    width: 80px;
    margin-right: 10px;
    float: none;
}

.news-right .view-small .article-item .inner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-right .view-small .article-item .inner-content {
    flex: 1;
}

.hotro_phai {
    background: #ebebeb;
    padding: 20px 5px;
    border-top: 3px solid #f00;
    position: relative;
    clear: both;
    overflow: hidden;
}

.hotro_phai .styleTitle h2.NH-title span {
    font-size: 20px;
}

.img_dt_ht {
    position: relative;
    margin-bottom: 0;
}

.img_dt_ht .dt_ht {
    position: absolute;
    width: 100%;
    z-index: 555555;
    bottom: -2px;
    left: 110px;
    color: #ff0;
    font-size: 23px;
    font-weight: bold;
}

.chay_hotro {
    width: 100%;
    float: left;
    padding: 0 10px;
}

.dong_hotro {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    border-bottom: 1px dotted;
    margin-top: 15px;
}

.khung_mxh_ht {
    width: 105px;
    float: left;
    line-height: 48px;
}

.khung_mxh_ht span {
    margin: 0 1px;
}

.khung_mxh_ht span img {
    width: 31%;
    float: left;
}

.khung_nd_ht {
    width: calc(100% - 120px);
    float: right;
}

.khung_nd_ht p {
    color: #005fa8;
    font-size: 14px;
    margin-bottom: 0;
}

.khung_nd_ht h4 {
    color: #f00;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: bold;
}

.emai_ht {
    width: 100%;
    float: left;
    margin: 5px 0;
    color: #3e3e3e;
    font-size: 14px;
}

b, strong {
    font-weight: bold;
}

/*Search Home*/
.slide-home {
    position: relative;
}

.sec-filter-house {
    position: absolute;
    left: 0;
    top: 30%;
    width: 100%;
    z-index: 1;
}

.sec-filter-house .filter-house {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.sec-filter-house .type-listing-home {
    border-bottom: 0;
    padding-bottom: 28px;
}

.sec-filter-house .search-type a {
    background: rgba(0,0,0,.5);
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding: 8px 35px 8px;
    font-size: 16px;
    border-radius: 4px;
}

.sec-filter-house .tabs-search {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.sec-filter-house .btn-advance-search {
    color: #fff;
    font-weight: 600;
    position: absolute;
    right: 0;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    background: rgba(0,0,0,.8);
    font-size: 13px;
    height: 38px;
    width: 160px;
    text-align: center;
    line-height: 39px;
    top: -38px;
}

.sec-filter-house .topfilter {
    border-radius: 4px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 6%);
    height: 60px;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.sec-filter-house .topfilter:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 5px;
    box-shadow: 0 3px 3px rgb(0 0 0 / 6%);
    position: absolute;
    left: 0;
    top: 53px;
    z-index: 8;
}

.ms-options {
    display: none;
}

.topfilter .ms-options-wrap {
    position: relative;
    width: 100%;
}

.topfilter .ms-options-wrap.topfilter__dropdown {
    max-width: 200px;
}

.topfilter .ms-options-wrap.topfilter__dropdown button {
    border: 0;
    background: var(--white);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 60px;
    border-right: 1px dashed rgba(0,0,0,.1);
    border-radius: 4px;
}

.ms-options {
    position: absolute;
    background: var(--white);
    width: 100%;
    border: 1px solid #eeefee;
    border-radius: 4px;
    z-index: 1;
    max-height: 164px;
    overflow-y: scroll;
}

.ms-options::-webkit-scrollbar {
    width: 6px;
}

.ms-options::-webkit-scrollbar-thumb {
    background: rgba(74,74,74,.35);
    border-radius: 20px;
}

.ms-options::-webkit-scrollbar-track {
    box-shadow: none;
    border-radius: 20px;
    background: #fff;
}

.ms-options__range.ms-options::-webkit-scrollbar {
    display: none;
}

.ms-options__range.ms-options::-webkit-scrollbar-thumb {
    display: none;
}

.ms-options__range.ms-options::-webkit-scrollbar-track {
    display: none;
}

.ms-options ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ms-options ul li {
    padding: 8px 10px 3px 20px;
    border-bottom: 1px solid #e4e4e4;
}

.ms-options ul li label {
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 400;
    padding: 4px 2px 4px 28px;
    color: #242933;
    font-size: 14px;
}

.ms-options-wrap>.ms-options>ul input[type=checkbox] {
    margin: 0 5px 0 0;
    position: absolute;
    left: 4px;
    top: 7px;
}

.ms-options-wrap>.ms-options>ul input[type=radio] {
    margin: 0 5px 0 0;
    position: absolute;
    left: 4px;
    top: 7px;
}

.apply-search {
    height: 40px;
    border-radius: 20px;
    width: 170px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--color-main);
    color: var(--white);
    border: 0;
    margin-right: 10px;
}

.apply-search:hover {
    background: var(--color-hightlight);
}

.search-keyword-container {
    flex: 1;
}

.search-keyword-container .search-text {
    border: 0;
    height: 60px;
}

.bl-s-filter {
    position: relative;
    background-color: #f8f7f9;
    border-radius: 0 0 8px 8px;
    height: 70px;
    margin-top: -2px;
    padding: 17px 8px;
}

.bl-s-filter .ms-options-wrap button {
    background-color: #fff;
    height: 36px;
    border-radius: 4px;
    border: 1px solid #eeefee;
    width: 100%;
    position: relative;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.ms-options__range {
    width: 370px;
}

.ms-options__range .p-title {
    font-size: 14px;
    font-weight: 700;
    color: #242933;
    margin-bottom: 5px;
    padding: 12px 12px 0;
}

.ms-options__range .div-chart {
    padding: 0 12px 20px;
    border-bottom: 0;
    margin: 0;
}
/*End Search Home*/

.code label {
    margin-right: 4px;
}

.product-table {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-table__item {
    width: 50%;
    padding: 6px 0;
}

.modal-content {
    border-radius: 6px;
}

.product-detail__images {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-row-gap: 12px;
    margin-left: -6px;
    margin-right: -6px;
}

.product-detail__image {
    flex: none;
    max-width: none;
    padding-left: 6px;
    padding-right: 6px;
}

.product-detail__image:first-child {
    flex: none;
    max-width: none;
    grid-row-start: 1;
    grid-row-end: 3;
    grid-column-start: 1;
    grid-column-end: 3;
}

.product-detail__image-box {
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
    min-height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 75%;
}

.product-detail__image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__image:first-child .product-detail__image-box {
    height: 100%;
}

.btn-addition-action__view-more {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: -.23px;
    color: #222531;
    padding: 12px 40px;
    background: #fff;
    border: 1px solid #cfd6e4;
    box-sizing: border-box;
    border-radius: 4px;
    display: inline-block;
}

.btn-addition-action__view-more:hover {
    background-color: #e31c5f;
    border-color: #e31c5f;
    color: #fff;
}

.page-about-us .social-share {
    display: none!important;
}

.product-detail__support-title {
    margin-bottom: 10px;
}

.product-detail__support-list img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border: 1px solid rgba(34,37,49,.16);
    background: #f9fafb;
    overflow: hidden;
    border-radius: 50%;
    margin-left: -12px;
}

.product-detail__box {
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 0.5px solid #a6b0c3;
}

.product-detail__box-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.product-detail__maps iframe {
    width: 100%!important;
    height: 350px!important;
    border: 1px solid rgba(34,37,49,.16)!important;
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
}

.product-detail__box-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}

.product-detail__box-list ul {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 20px;
    padding-right: 20px;
}

.product-detail__box-list ul li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.product-detail__box-list ul li .icon {
    flex: 0 0 40px;
    max-width: 40px;
    display: inline-flex;
    align-items: flex-start;
}

.product-detail__box-list ul li .icon span {
    max-width: 25px;
    display: inline-block;
    text-align: center;
}

.product-detail__box-list ul li .info {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(100% - 40px);
    max-width: calc(100% - 40px);
    padding: 0;
}

.product-detail__box-list ul li .info strong {
    font-weight: 600;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -.43px;
    color: #222531;
}

.product-detail__box-list ul li .info span {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -.23px;
    color: rgba(34,37,49,.7);
}

.product-detail__creage ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail__creage ul li {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.product-detail__creage ul li .icon {
    width: 8px;
    height: 8px;
    margin: 10px 24px 10px 12px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    background: #222531;
}

.product-detail__creage ul li .info {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(100% - 52px);
    max-width: calc(100% - 52px);
    padding: 0;
}

.product-detail__creage ul li .info strong {
    font-weight: 600;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -.43px;
    color: #222531;
}

.product-detail__creage ul li .info span {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -.23px;
    color: rgba(34,37,49,.7);
}

.btn-read__more, .btn-read__less {
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -.23px;
    color: #222531;
    padding: 12px 40px;
    background: #fff;
    border: 1px solid #cfd6e4;
    box-sizing: border-box;
    border-radius: 4px;
    margin-top: 30px;
    display: inline-block;
    cursor: pointer;
}

.btn-read__less {
    display: none;
}

.product-detail__box-content-full {
    height: 600px;
    overflow: hidden;
}

.product-detail__box-content.show .product-detail__box-content-full {
    height: auto;
    overflow: visible;
}

.product-detail__box-content.show .btn-read__more {
    display: none;
}

.product-detail__box-content.show .btn-read__less {
    display: inline-block;
}

.detail-menu-sticky {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: inset 0px -0.5px 0px #cfd6e4;
}

.detail-menu-sticky.show {
    display: block;
}

.detail-menu-sticky__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail-menu-sticky__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.detail-menu-sticky__list li a {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -.23px;
    color: #222531;
    padding: 30px 16px;
    display: inline-block;
    position: relative;
}

.detail-menu-sticky__list li a:before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    height: 4px;
    background-color: var(--color-main);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.detail-menu-sticky__list li a.active:before {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.detail-menu-sticky__right {
    display: flex;
    align-items: center;
}

.detail-menu-sticky__right-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-right: 20px;
}

.detail-menu-sticky__right-phone {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -.23px;
    color: #fff;
    padding: 16px 32px;
    margin-left: 16px;
    background-color: var(--color-main);
    border-radius: 4px;
}

.detail-menu-sticky__right-phone:hover {
    color: #fff;
}

.building-ttnb {
    margin-top: 40px;
    border-radius: 12px;
    position: relative;
    padding: 60px;
    margin-bottom: 30px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.building-ttnb .ttnb-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(90deg,rgba(3,41,98,.95) 41.73%,rgba(8,35,76,0) 153.62%,rgba(3,41,98,.2) 153.62%,rgba(3,41,98,.2) 153.62%);
}

.building-ttnb .ttnb-description {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: -.26px;
    color: #fff;
    margin: 0 0 24px;
    max-width: 55%;
    position: relative;
}

.building-ttnb .ttnb-contact {
    font-weight: 600;
    font-size: 15px;
    line-height: 28px;
    letter-spacing: -.43px;
    color: #fff;
    max-width: 55%;
    position: relative;
}

.building-ttnb .ttnb-contact a {
    color: #e31c5f;
}

.is-mobile .detail-menu-sticky__list > ul {
    display: none;
}

.is-mobile .product-detail__box-list ul {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.is-mobile .detail-menu-sticky.show {
    display: block;
    bottom: 0;
    top: auto;
}

.is-mobile .detail-menu-sticky__list {
    padding: 10px 0;
}

.is-mobile .detail-menu-sticky__right-price {
    font-size: 14px;
    margin-right: 6px;
}

.is-mobile .detail-menu-sticky__right-phone {
    font-size: 14px;
    padding: 12px 12px;
    margin-left: 6px;
}
.bg-bds {
    background: #24295F;
}


@media (min-width: 768px) {
    .product-detail-info.fixed {
        top: 100px;
        position: fixed;
    }
}

@media (max-width: 991px) {
    .slider-section, .slider-section .item img {
        height: 400px;
    }
    
    .product-detail-info__title {
        font-size: 16px;
    }
    
    .product-detail-call {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .product-detail-send {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .product-detail-footer .code {
        font-size: 14px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .product-title-detail {
        font-size: 20px;
    }
    
    .btn-addition-action__view-more {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 767px) {
    .boxContentInfo h3 {
        font-size: 16px;
    }
    
    .styleTitle h2.NH-title span {
        font-size: 20px;
    }
    
    .field__item-title {
        font-size: 16px;
        line-height: 22px;
        font-weight: 600;
    }
    
    .sec-filter-house {
        top: 10%;
    }
    
    .article-title-detail {
        font-size: 22px;
    }
    
    .form-detail-product h2 {
        font-size: 18px;
    }
    
    .bl-s-filter {
        height: 108px;
    }
    
    .bl-s-filter .ms-options-wrap button {
        margin-top: 5px;
    }
    
    .sec-filter-house .search-type a {
        padding: 4px 20px 4px;
        font-size: 14px;
    }
    
    .sec-filter-house .btn-advance-search {
        font-size: 11px;
        height: 30px;
        width: 120px;
        line-height: 30px;
        top: -30px;
    }
    
    .sec-filter-house .topfilter {
        height: 50px;
    }
    
    .search-keyword-container .search-text {
        height: 50px;
    }
    
    .apply-search {
        height: 30px;
        width: 100px;
        font-size: 12px;
    }
    
    .topfilter .ms-options-wrap.topfilter__dropdown button {
        height: 50px;
    }
    
    .ms-options__range {
        width: 304px;
    }
    
    .ms-options {
        width: 304px;
    }
    
    .thongtinct table {
        width: 100%!important;
    }
    
    .product-table__item {
        width: 50%;
        padding: 6px 0;
    }
    
    .building-ttnb {
        padding: 20px;
        margin-top: 20px;
    }
    
    .building-ttnb .ttnb-description {
        max-width: 100%;
    }
    
    .building-ttnb .ttnb-contact {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .bl-s-filter {
        height: 200px;
    }
    
    .sec-filter-house .topfilter {
        flex-wrap: wrap;
    }
    
    .topfilter .ms-options-wrap.topfilter__dropdown {
        max-width: 100%;
    }
    
    .sec-filter-house .topfilter {
        height: 110px;
    }
    
    .slider-section, .slider-section .item img {
        height: 600px;
    }
}