:root{
    --primary: 254, 203, 43;
    --white: 255, 255, 255;
    --primary-color: rgb(var(--primary));
    --color2: #14a0ff;
    --color3: #606266;
    --color4: #303133;
    --color5: #53A7FF;
    --color6: #fecb2b;
    --color-danger: rgb(204, 2, 2);
    --color-success: rgb(6, 146, 36);
    --color-title: var(--color4);
    --color-footer: var(--color3);
    --primary-background: rgb(var(--primary));
    --primary-background2: #14a0ff;
    --primary-background-gray: #f6f6f6;
    --primary-background-popup: #292929;
    --gradient-1: linear-gradient(-20deg, #0E90D5, #1b69b3) !important;
}

::-webkit-scrollbar {
    width: 10px
}

::-webkit-scrollbar-track {
    background-color: #1f1f1feb;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-background);
    border-radius: 2px
}

::-webkit-scrollbar-corner {
    background-color: #00000042;
    border-radius: 10px
}

html,body,div,span,applet,object,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	font-weight:normal;
	vertical-align:baseline;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}
ol,ul,li {
	list-style:none;
}
blockquote,q {
	quotes:none;
}
blockquote:before,blockquote:after,q:before,q:after {
	content:'';
	content:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
th,td {
	vertical-align:middle;
}

a {
	outline:none;
	color:#000;
	text-decoration:none;
}
a:focus {
	outline:none;
}
input:focus,select:focus,textarea:focus {
	outline:-webkit-focus-ring-color auto 0;
}

*{
	box-sizing: border-box;
}

.border-danger {
    border-color: var(--color-danger) !important;
}

.text-danger {
    color: var(--color-danger);
}

.text-success {
    color: var(--color-success);
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

p{
    color: var(--color3);
}

.text-white{
    color: #fff;
}

.cursor-pointer {
    cursor: pointer;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.color4, .color4 * {
    color: var(--color4);
}

.color-black,
.color-black * {
    color: #000;
}

.section-title-line.mlr-auto .cutter-line {
    text-align: center;
    margin: 2.5rem auto;
}

.section-title-line + .section-desc {
    margin-top: 1rem;
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 40px !important;
    }
    .section-title-line.mlr-auto .cutter-line {
        margin: 1.5rem auto;
    }
    
    .section-desc {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 30px !important;
    }
    .section-title-line.mlr-auto .cutter-line {
        /* margin: 1.5rem auto; */
    }

    .imageToText-section .cutter-func-area .cutter-func-areatext {
        max-width: 413px;
    }
}

@media (max-width: 990px) {
    .imageToText-section .cutter-func-area .cutter-func-areatext {
        max-width: 45%;
    }
}

@media (max-width: 767px) {
    .section-title-line.mlr-auto .cutter-line {
        /* margin: 1.5rem auto; */
    }
}

@media (max-width: 520px) {
    .section-title {
        font-size: 25px !important;
    }
}

/* Bo sung */

.relative {
    position: relative;
}

section:not(.banner-section, .contact-us-banner-box) {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.container {
	width: 90%;
    max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
    position: relative;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.grid {
    display: grid
}
.gap-5 {
    grid-gap: 5px;
}
.gap-10 {
    grid-gap: 10px;
}
.gap-15 {
    grid-gap: 15px;
}
.gap-20 {
    grid-gap: 20px;
}
.gap-30 {
    grid-gap: 30px;
}
.gap-40 {
    grid-gap: 50px;
}
.gap-4rem {
    grid-gap: 4rem;
}

.grid-1 {
	grid-template-columns: repeat(1, 1fr)
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr)
}

.grid-7 {
	grid-template-columns: repeat(7, 1fr)
}

.grid-12 {
	grid-template-columns: repeat(12, 1fr)
}

@media screen and (min-width: 1025px) {
    .grid-1_lg {
        grid-template-columns: repeat(1, 1fr)
    }
    .grid-2_lg {
        grid-template-columns: repeat(2, 1fr)
    }
    .grid-3_lg {
        grid-template-columns: repeat(3, 1fr)
    }
    .grid-4_lg {
        grid-template-columns: repeat(4, 1fr)
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .grid-1_md {
        grid-template-columns: repeat(1, 1fr)
    }
    .grid-2_md {
        grid-template-columns: repeat(2, 1fr)
    }
    .grid-3_md {
        grid-template-columns: repeat(3, 1fr)
    }
    .grid-4_md {
        grid-template-columns: repeat(4, 1fr)
    }
}
@media screen and (max-width: 767px) {
    .grid-1_sm {
        grid-template-columns: repeat(1, 1fr)
    }
    .grid-2_sm {
        grid-template-columns: repeat(2, 1fr)
    }
    .grid-3_sm {
        grid-template-columns: repeat(3, 1fr)
    }
    .grid-4_sm {
        grid-template-columns: repeat(4, 1fr)
    }
}
@media screen and (max-width: 520px) {
    .grid-1_xsm {
        grid-template-columns: repeat(1, 1fr)
    }
    .grid-2_xsm {
        grid-template-columns: repeat(1, 1fr)
    }
    .grid-3_xsm {
        grid-template-columns: repeat(1, 1fr)
    }
    .grid-4_xsm {
        grid-template-columns: repeat(1, 1fr)
    }
    .grid-2_xsm {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* section:not(.banner-section, .imageToText-section, .textToImage-section,
.features-slides-section, .first-centralized-software-section,
.bright, .selling-points
){ */
.section-content,
.contact-us-map-box,
.contact-us-join,
.procedure-section,
.requirement-section,
.support-section,
.intellectual-section,
.technology-section,
.certificate-section,
.process-section,
.customer-section,
.youtube-section,
.productFlagship-section,
.statistic-section,
.efficient-section,
.partner-section,
section.automation-section,
.two-column-image-section,
section.history-section,
section.layer-image-section,
section.components-section,
section.outstanding-section,
section.summary-section,
section.specifications-section,
section.product-section,
section.product-new-section,
section.personnel-section,
section.workshop-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

section.statistic-section.style-2 {
    padding-bottom: 0;
}

.clients-section:not(.clients-section + .clients-section){
    padding-top: 50px;
}

.features-slides-section + section {
    margin-top: 50px;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  line-height: 1.3 !important;
  font-weight: 600;
  color: var(--color-title);
}

.section-desc {
  width: 70%;
  text-align: center;
  margin: 0 auto 2.5rem;
}

@media (max-width: 767px) {
    .section-desc {
        width: 85%;
        font-size: 15px !important;
        line-height: 1.3 !important;
    }
}

.section-title + .section-desc {
    margin-top: 2rem;
  }

.title + .desc {
  margin-top: 20px;
}

.background-css {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    /* background-attachment: fixed; */
}

.has-background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.bg-pos-topLeft {
    background-position: top left;
}

.bg-pos-topRight {
    background-position: top right;
}

.background-over {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .6;
}

.has-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.border-color2 {
    border: 1px solid var(--color2);
}

.btn-read-more {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    transition: .3s;
}

.btn-read-more .text-readmore,
.btn.btn-primary,
.btn-cta
{
    padding: 8px 18px;
    color: #000;
}

.btn-read-more .text-readmore
{
    border: 1px solid var(--primary-background);
    background-color: rgb(var(--white), 0.7);
}

.btn-read-more:hover .text-readmore{
    background-color: var(--primary-background);
}

.btn.btn-primary, .btn-cta {
    position: relative;
    background-color: var(--primary-background);
}

.btn.btn-primary {
    display: inline-block;
}

.borderW-before:before {
    position: absolute;
    content: '';
    border: 2px solid #fff;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.page-swiper-bottom .swiper-pagination {
    top: auto !important;
    bottom: 0;
    background: #e6e6e6;
    height: 10px !important;
}

.page-swiper-bottom .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: var(--primary-background);
}


/* Chi tit tin */

.overflow-x{
    overflow-x: auto;
    border: 1px solid #e6e6e6;
    margin-bottom: 20px;
}

.overflow-x table {
    border-left: unset;
}

.breadcrumb-section {
    /* height: 400px; */
    font-size: 18px;
    color: #fff;
    margin-top: 60px;
    padding: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb-content {
    padding-top: 5%;
    padding-bottom: 5%;
    display: flex;
    align-items: center;
}
  
.breadcrumb-content .breadcrumb {
    display: flex;
    align-items: center;
}
  
.breadcrumb-content .breadcrumb li + li {
    margin-left: 10px;
}
  
.breadcrumb-content .breadcrumb li.breadcrumb-item a {
    color: #fff;
}
  
.breadcrumb-section .title-breadcrumb {
    font-size: 2.5rem;
}
  
.post-content img {
    height: auto !important;
    max-width: 100%;
}

section.page-detail {
    margin: 4rem;
}

.post-content table td, th {
    border: 1px solid #ccc;
    padding: 10px;
}

table td, th {
    border: 1px solid #ccc;
    padding: 10px;
}

.post-content {
    padding: 50px;
}

.post-content, .post-content * {
    color: var(--color4);
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content ol::marker, .post-content ul::marker {
    display: none;
    content: '';
}

.post-content ol, .post-content ul, .post-content li {
    list-style: auto;
    margin-bottom: 5px;
    display: list-item;
}

.post-content ul li {
    list-style: decimal;
}

.post-content ol li {
    list-style: circle;
}

.post-content ol, .post-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.two-text-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

/*Loader*/

#loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0000008f;
    z-index: 99999999
}
#loader .loading,
#loader .loading>div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
#loader .loading {
    display: block;
    font-size: 0;
    color: var(--primary-background);
    height: 40px
}
#loader .loading>div {
    display: inline-block;
    float: none;
    border: 1px solid;
    width: 40px;
    height: 40px;
    background: transparent;
    border-bottom-color: transparent;
    border-radius: 100%;
    -webkit-animation: loading .75s linear infinite;
    -moz-animation: loading .75s linear infinite;
    -o-animation: loading .75s linear infinite;
    animation: loading .75s linear infinite
}
@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}


/* Custom */
body.news-detail {
  font-size: 16px !important;
  line-height: 1.75 !important;

}

/* Tiêu đề chính */
body.news-detail h1 {
  font-size: 28px !important;
  font-weight: bold !important;
  margin: 24px 0 16px !important;
  color: #222 !important;
  border-bottom: 2px solid #ddd !important;
  padding-bottom: 8px !important;
}

/* Tiêu đề phụ */
body.news-detail h2 {
  font-size: 22px !important;
  font-weight: bold !important;
  margin: 24px 0 12px !important;
  color: #444 !important;
}

/* Tiêu đề nhỏ */
body.news-detail h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin: 20px 0 10px !important;
  color: #555 !important;
}

/* Đoạn văn */
body.news-detail p {
  margin: 12px 0 !important;
  text-align: justify !important;
}

/* Gạch đầu dòng */
body.news-detail ul {
  margin-left: 20px !important;
  padding-left: 10px !important;
  list-style-type: disc !important;
}

body.news-detail li {
  margin-bottom: 8px !important;
}

/* Đánh số */
body.news-detail ol {
  margin-left: 20px !important;
  padding-left: 10px !important;
}

/* In đậm và nghiêng */
body.news-detail strong {
  font-weight: bold !important;
}
body.news-detail em {
  font-style: italic !important;
}

/* Ảnh minh họa */
body.news-detail img {
  max-width: 100% !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  margin: 16px auto !important;
  display: block !important;
}

/* Bảng */
body.news-detail table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 16px 0 !important;
}

body.news-detail th, body.news-detail td {
  border: 1px solid #ccc !important;
  padding: 8px 12px !important;
  text-align: left !important;
}

body.news-detail th {
  background-color: #f5f5f5 !important;
  font-weight: bold !important;
}

body.news-detail .toc-block {
    position: relative
}

body.news-detail .title-toc-block {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    position: relative
}

body.news-detail .title-toc-block svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}


body.news-detail .single-post-area .toc-block {
    background-color: #f3f8ff;
    padding: 10px;
    border: 1px solid #c8dfff;
    border-radius: 5px
}

body.news-detail .dropdown-toc-block {
    position: absolute;
    top: 0;
    right: 0;
    background: #6e6e6e;
    padding: 5px;
    border-bottom-left-radius: 3px;
        width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.news-detail .dropdown-toc-block svg {
    transform: rotate(180deg);
    fill: #fff
}

body.news-detail .dropdown-toc-block.close svg {
    transform: rotate(0deg)
}

body.news-detail .single-post-area .toc-block > ul {
    list-style: unset;
    padding-left: 20px;
    color: var(--primary)
}
body.news-detail .post-content ul li{
    list-style: disc;
}

body.news-detail .news_detail-page .title-breadcrumb{
    display:none;
}