.absolute-footer,
.is-divider {
	display: none;
}
.items-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.title-banner {
	  display: inline-block;
  background: linear-gradient(to right, #ED1C24, #D65D92, #005CCC);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
	font-size: 64px;
	margin-bottom: 15px;
	font-weight: bold;
	line-height: 85px;
}
.img-banner {
  animation: pulseScale 2s ease-in-out infinite;
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}


.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
}
.video-wrapper video {
	border-radius: 20px;
}
.play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  width: 80px; height: 80px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.play-overlay::before {
  content: "";
  display: block;
  width: 0; height: 0;
  margin-left: 10px;
  border-style: solid;
  border-width: 20px 0 20px 35px;
  border-color: transparent transparent transparent #fff;
}

.text-count {
	font-size: 45px;
    margin-bottom: 0;
    font-weight: bold;
}
.border-r .col-inner {
	border-right: solid 1px #fff;
}

.icon-box-hover {
  transition: all 0.3s ease; 
  transform: translateY(0);
	  border-radius: 24px;
	padding: 30px;
}

.icon-box-hover:hover {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px); /* Nổi nhẹ lên */
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-number {
  font-size: 24px;
  font-weight: bold;
  color: #ed1c24; 
  flex-shrink: 0;
}

.feature-content {
  max-width: 700px;
}

.feature-title {
  font-size: 24px;
	color: #000;
  font-weight: bold;
  margin: 0 0 8px;
}

.feature-description {
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}
.text-btn {
	    background: #ffd8d8;
    display: inline-block;
    color: #ed1c24;
    padding: 7px 15px;
    border-radius: 10px;
}
.img-radius .img-inner {
	border-radius: 18px;
}
.bg-white {
	    background: #fff;
    padding: 40px!important;
	border-radius: 18px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.bg-white-col>.col-inner {
	    background: #fff;
    padding: 20px!important;
	border-radius: 18px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.marquee {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marqueeAnim 20s linear infinite;
}

.marquee-content img {
  height: 45px;
  width: auto;
  margin-right: 40px;
  object-fit: contain;
  user-select: none;
  display: block;
}

@keyframes marqueeAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50%));
  }
}

.tab-noidung .nav {
	gap: 40px;
}
.tab-noidung .nav li a {
	color: #777e90;
}
.tab-noidung .nav li.active a {
	color: #ed1c24;
}

.border-b {
	border-bottom: solid 1px #e5e5e5;
}
.blog-custom .col .col-inner .box .box-image .image-cover {
	border-radius: 18px;
}
.blog-custom .col .col-inner .box .box-text .post-title a {
	font-size: 28px;
	color: #282a2f;
	display: -webkit-box;
  -webkit-line-clamp: 2;     
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;  
}


.blog-custom .col .col-inner .box .box-text .from_the_blog_excerpt {
	font-size: 16px; 
	color: #282a2f;
}
.blog-custom .col .col-inner .box .box-text .button {
	background: #ed1d26;
    margin: 10px 0 0 0;
    border: solid 1px #ed1d26;
    color: #fff;
    padding: 2px 15px;
    border-radius: 10px;
}
.blog-custom .col-inner {
  padding: 15px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 18px;
  box-shadow: none;
}

.blog-custom .col-inner:hover {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  padding: 15px;
  cursor: pointer; 
}

.row-container {
  display: flex;
  align-items: center;
  gap: 30px; /* khoảng cách giữa nhóm ảnh và nhóm text */
  font-size: 16px;
  color: #282a2f;
  font-family: Arial, sans-serif;
}

.image-group {
  display: flex;
  gap: 15px; /* khoảng cách giữa 2 ảnh */
}

.image-group img {
  height: 40px; /* hoặc kích thước bạn muốn */
  width: auto;
  display: block;
}

.text-group {
  display: flex;
  align-items: center;
  gap: 10px; /* khoảng cách giữa text và dấu | */
}

.text-group .separator {
  user-select: none; /* không cho chọn dấu | */
  color: #999;
}

.tab-gioi-thieu {
    background: linear-gradient(to right in oklab, rgba(0, 0, 0, 0) 0px, rgb(247, 224, 220) 100%);
    border-radius: 18px;
    padding: 20px;
	  transition: background 0.4s ease;

}


.tab-gioi-thieu ul li {
	border: none!important;
	background: #fff; 
	padding-left: 20px;
}
.tab-gioi-thieu ul li a {
	font-weight: bold;
	color: #282a2f;
	font-size: 16px;
}
.tab-gioi-thieu ul li.active {
	background: unset!important;
}
.tab-gioi-thieu ul li.active  a {
	color: #ec1e25;
}
.nav-vertical+.tab-panels {
	border: none;
}
.tab-gioi-thieu .tab-panels {
	background: #fefefeb2;
    margin-left: 20px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 #0000, 0 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 6px 80px 1px var(--tw-shadow-color, #91a1d633);
}


.tab-gioi-thieu ul li a span img.red-icon {
  filter: none; /* Màu mặc định, không đổi */
  transition: filter 0.3s ease;
}
.tab-gioi-thieu ul li a {
	padding: 15px 0;
}
.tab-gioi-thieu ul li.active a span img.red-icon {
  filter: invert(27%) sepia(91%) saturate(7000%) hue-rotate(-10deg) brightness(90%) contrast(90%);
}
    .tab-gioi-thieu .nav li.tab a > span img.red-icon {
		margin-bottom: 4px;
      width: 20px;
      height: 20px;
      margin-right: 6px;
      vertical-align: middle;
    }

.timeline-event {
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px; /* tạo chỗ cho dấu chấm */
}
.event-date {
	font-size: 14px;
	color: #18b662;
}
.timeline-event .event-date {
  font-weight: bold;
  margin-bottom: 4px;
  position: relative;
}

/* Dấu chấm nhỏ bên trái ngày */
.timeline-event .event-date::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #18b662; 
  border-radius: 50%;
}
.p2 {
	padding: 20px !important;
}




.list-leadership {
    list-style-type: disc; 
}

.list-leadership li::marker {
    color: #ed1c24; /* Màu dấu chấm */
    font-size: 1.2em; /* Có thể chỉnh kích thước */
}
.office-location {
	padding-bottom: 20px;
}
.office-location h3 {
	    font-size: 24px;
    color: #282a2f;
    margin-bottom: 2px;
}

.training-steps {
	    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.step-column {
	display: grid; 
	gap: 15px;
}
.step-item {
	height: 70px;
	display: flex;
	align-items: center;
	gap: 15px;
	background: #fff;
    padding: 15px;
    border: solid 1px #ccc;
    border-radius: 15px;
}
.step-item:hover {
	border-color: #ec1d25;
}
.step-item:hover .step-title {
	color: #ec1d25;
}
.step-title {
	flex: 12%;
	margin-bottom: 0;
	font-weight: bold;
	font-size: 20px;
}
.step-content {
	font-size: 14px;
flex: 65%;
}
.form-col2 p{
	  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.form-btn {
		  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.form-col2 p label,
.title-from {
	color: #353945;
	font-size: 14px;
	font-weight: 500;
}
.input-form {
	border: solid 1px #e5e5e5 !important;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05) !important;
    height: 45px!important;
    border-radius: 7px!important;
    margin-top: 5px!important;
}
.input-form:focus {
outline: none!important;
    border-color: var(--ring, #ed1c24)!important; /* Mặc định dùng đỏ nếu chưa set */
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--ring, #ed1c24) 50%, transparent)!important;
}
.check-form span label {
	display: flex;
}
.check-form span label span {
	font-weight: 500;
    font-size: 12px;
}
.wpcf7-spinner {
	display: none;
}
.btn-form-main {
	display: flex;
	justify-content: end;
}
.btn-form {
	margin: 0;
    padding: 3px 30px!important;
    border-radius: 12px!important;
}

.blog-featured .col-inner {
	  background: #fff;
    padding: 35px !important;
    border-radius: 18px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.blog-featured .col-inner .box .box-image .image-cover {
      border-radius: 18px;
}

.blog-featured .col-inner .box .box-text h5 a{
		font-size: 28px;
	color: #282a2f;
}
.blog-featured .col-inner .box .box-text .post-meta {
	font-size: 14px;
	color: #282a2f;
}
.blog-featured .col-inner .box .box-text .from_the_blog_excerpt  {
	font-size: 15px;
	color: #282a2f;
}
.blog-featured .col-inner .box .box-text .button {
	    background: #ed1d26;
    margin: 10px 0 0 0;
    border: solid 1px #ed1d26;
    color: #fff;
    padding: 2px 15px;
    border-radius: 10px;
}


.list-dc::-webkit-scrollbar {
  width: 8px;
}

.list-dc::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 4px;
}

.list-dc::-webkit-scrollbar-thumb {
  background-color: #ed1d26;
  border-radius: 4px;
  border: 2px solid #f0f0f0;
}

.list-dc::-webkit-scrollbar-thumb:hover {
  background-color: #b71b1f;
}

.list-dc {
  scrollbar-width: thin;
  scrollbar-color: #ed1d26 #f0f0f0;
}








.container-dc {
	display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
}
.list-dc {
	max-height: 500px;
	overflow-y: auto;
	background: #fff;
	border-radius: 14px;
}
        .dc-item {
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            transition: background-color 0.2s;
        }
        .dc-item:hover .dc-title, .dc-item.active .dc-title {
					color: #ed1d26;
            
        }
        .dc-title {
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .dc-address {
            font-size: 14px;
            color: #666;
        }
        .map-dc {
            flex: 1;
        }
        .map-frame {
            width: 100%;
            height: 400px;
            border: none;
            display: none;
        }
        .map-frame.active {
            display: block;
        }

.slider-nav-light .flickity-page-dots .dot {
    border-color: #ed1d26;
}
.slider-nav-light .flickity-page-dots .dot.is-selected, .slider-nav-light.slider-nav-dots-simple .flickity-page-dots .dot {
    background-color: #ed1d26;
}
.td-content {
	    display: grid;
    grid-template-columns: 28% 28% 28% 16%;
}
.tuyen-dung-item {
	    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid #fff;
}
.tuyen-dung-item:hover {
	border: solid 1px #ed1d26;
}
.tuyen-dung-item:hover .td-title {
	color: #ed1d26;
}
.td-btn {
	border: solid 1px #282a2f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-weight: bold;
    color: #282a2f;
}
.tuyen-dung-item:hover .td-btn {
	background: #ed1d26;
	color: #fff;
	border: solid 1px #ed1d26;
}
.td-info i {
	color: #ed1d26;
}
.td-label {
	font-size: 17px;
	font-weight: bold;
	    color: #282a2f;
}
.mt-4 {
	margin-top: 70px;
}



/* Submenu container */
ul.sub-menu.nav-dropdown.nav-dropdown-simple {
    background: #fff; /* Nền trắng */
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
}

/* Từng item */
ul.sub-menu.nav-dropdown.nav-dropdown-simple li {
    list-style: none;
    margin: 0;
}

/* Link trong submenu */
ul.sub-menu.nav-dropdown.nav-dropdown-simple li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

/* Hover hiệu ứng */
ul.sub-menu.nav-dropdown.nav-dropdown-simple li a:hover {
    background: rgba(237, 29, 38, 0.1); /* Nền nhạt khi hover */
    color: #ed1d26; /* Đổi màu chữ */
    border-left: 3px solid #ed1d26; /* Viền trái */
}

/* Active menu item */
ul.sub-menu.nav-dropdown.nav-dropdown-simple li.active a,
ul.sub-menu.nav-dropdown.nav-dropdown-simple li.current-menu-item a {
    background: rgba(237, 29, 38, 0.15);
    color: #ed1d26;
    border-left: 3px solid #ed1d26;
    font-weight: 600;
}

/* Responsive nhỏ gọn */
@media (max-width: 768px) {
    ul.sub-menu.nav-dropdown.nav-dropdown-simple {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    ul.sub-menu.nav-dropdown.nav-dropdown-simple li a {
        padding: 12px;
        font-size: 16px;
    }
}

.slider-wrapper .flickity-prev-next-button {
	display: block!important;
}

@media only screen and (max-width: 768px) {
	
.slider-wrapper .flickity-prev-next-button {
	display: block!important;
}
	.text-count {
    font-size: 35px;
	}
	.bg-white {
		padding: 40px 15px!important;
		margin: 0 20px;
        width: auto;
	}
	.title-res {
		    font-size: 50px;
    line-height: 65px;
	}
	.tab-gioi-thieu .tab-panels {
		margin-left: 0;
		margin-top: 20px;
	}
	.training-steps {
		grid-template-columns: 1fr;
	}
	.step-title {
		flex: 12%;
	}
	.form-col2 p,
	.form-btn {
		grid-template-columns: 1fr;
    gap: 0;
	}
	.btn-form-main {
		margin-top: 10px;
		justify-content: start;
	}
	.td-content {
		    grid-template-columns: 1fr;
    gap: 10px;
	}
	.td-title {
		font-size: 20px;
	}
	.td-btn {
		display: none;
	}
}


.cta-call {
    position: fixed;
    left: 0;
    bottom: 13%;
    background: #ed1d26;
    border-radius: 0 30px 30px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    overflow: hidden;
}

.cta-call a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}
.cta-call .cta-icon {
    background: #fff;
    color: #ed1d26;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    animation: phone-ring 1s infinite;

    /* Thêm glow màu đỏ nhạt */
    box-shadow: 0 0 8px 2px rgba(237, 29, 38, 0.4);
}
@keyframes phone-ring {
    0% { 
        transform: rotate(0); 
        box-shadow: 0 0 8px 2px rgba(237, 29, 38, 0.4);
    }
    10% { 
        transform: rotate(-15deg); 
        box-shadow: 0 0 12px 3px rgba(237, 29, 38, 0.6);
    }
    20% { 
        transform: rotate(15deg); 
        box-shadow: 0 0 12px 3px rgba(237, 29, 38, 0.6);
    }
    30% { 
        transform: rotate(-15deg); 
        box-shadow: 0 0 12px 3px rgba(237, 29, 38, 0.6);
    }
    40% { 
        transform: rotate(15deg); 
        box-shadow: 0 0 12px 3px rgba(237, 29, 38, 0.6);
    }
    50% { 
        transform: rotate(0); 
        box-shadow: 0 0 8px 2px rgba(237, 29, 38, 0.4);
    }
    100% { 
        transform: rotate(0); 
        box-shadow: 0 0 8px 2px rgba(237, 29, 38, 0.4);
    }
}

.bg-white-icon {
    background: #fff;
    border-radius: 18px;
    padding: 15px 20px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}


.section-title {
  position: relative;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ed1d26;
  margin: 60px 0 20px;
  z-index: 2;
}

/* Số nền mờ phía sau mỗi tiêu đề */
.section-title::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  font-size: 150px;
  font-weight: 900;
  color: #cccccc29;
  z-index: 1;
  line-height: 1;
  pointer-events: none;
  content: "";
}

/* Gán số riêng cho từng section */
.section-title.distributor::before {
  content: "01";
}
.section-title.dealer::before {
  content: "02";
}
.section-title.retailer::before {
  content: "03";
}
.section-title.collaborator::before {
  content: "04";
}