.home-content .box-about .col-inner{
	background-color: rgb(228, 228, 228);
	padding: 20px !important;
	border-radius: 25px;
	height: 100%;
}
.home-content .box-about .col-inner h5{
	font-size:20px !important;
}

.home-content .box-about .button{
	border-radius: 10px;
	background: var(--color-main);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	margin: 20px auto;
	margin-top: 25px;
}
.home-content .box-right .col-inner{
	background-color: #FFF;
	box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .1);
	padding: 20px !important;
	height: 100%;
	border-radius: 25px;
}
.box-right p{
	margin-bottom:10px;
}
.row2 {
	background-color: #f4f6f9;
	border-radius: 20px;
	padding: 35px 20px;
	display: flex;
	align-items: center;
	position: relative;
	margin-top:50px;
}

.row2 .middle-left .col-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.row2 .middle-left .icon-box {
	width: 50%;
	padding: 15px;
	text-align: center;
}
.row2 .middle-left .icon-box-img{
	width:45px !important;
}
.row2 .middle-left .icon-box-img {
	margin: 0 auto 10px auto;
}

.row2 .middle-left .icon-box-text h3 {
	font-size: 18px !important;
	font-weight: bold;
	color: #000;
	text-transform: uppercase;
}

.row2 .middle-right {
	padding-left: 20px;
}

.row2 .middle-right h3 span, 
.row2 .middle-right h3 strong {
	color:  var(--color-main);
	font-size: 26px;
	line-height: 1.3;
}

.row2 .middle-right p {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
}

.row2 .middle-right ul {
	list-style: none;
	padding: 0;
}
.row2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-top: 20px solid #ffffff;
	z-index: 9;
}

.row2 .middle-right ul li::before {
	content: "•";
	position: absolute;
	left: 0;
	font-weight: bold;
	font-size: 18px;
}

.row3 .box-text.text-center{
	left: 50%;
	margin: 10% 0;
	transform: translateX(-50%);
	background-color: #fff;
	bottom: 20px;
	box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .1);
	opacity: .95;
	padding: .5em 1.5em .55em;
	position: absolute;
	width: auto;
	width: 100%;

}

.row .box-text.text-center p{
	color:#000;
}
.row3{
	margin-top:60px;
}
.row3 .box-image{
	border-radius:20px; 
	overflow:hidden;
}
.row3 .box.has-hover:hover .box-text{
	background: var(--color-main) !important;
}
.row3 .box.has-hover:hover .box-text p{
	color: var(--color-white);
}
.row3 .button{
	background: var(--color-main);
	/* 	width: 50%; */
	margin: 20px auto;
	margin-top: 25px;
}




/* Tổng thể khu vực quy trình */
.process {
	counter-reset: process-count; /* Khởi tạo bộ đếm */
}

/* 1. XỬ LÝ RIÊNG CHO CỘT TIÊU ĐỀ (Cột đầu tiên) */
/* Loại bỏ khung trắng và bóng đổ cho ô tiêu đề để nó thoáng như mẫu */
.process > .col:first-child .col-inner {
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
}

/* Đảm bảo tiêu đề không có số 01 hiện lên */
.process > .col:first-child .col-inner::after {
	display: none !important;
}


/* 2. THIẾT KẾ CHO CÁC Ô QUY TRÌNH (Từ cột thứ 2 trở đi) */
.process > .col:not(:first-child) .col-inner {
	background: #ffffff;
	border-radius: 20px;
	padding: 35px 25px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	position: relative;
	height: 100%;
	transition: transform 0.3s ease;
	border: 1px solid #eee;
	margin-bottom: 30px;
}

.process > .col:not(:first-child) .col-inner:hover {
	transform: translateY(-5px);
}

.process > .col:not(:first-child) .col-inner::after {
	counter-increment: process-count; /* Chỉ tăng số từ cột thứ 2 */
	content: "0" counter(process-count);
	position: absolute;
	top: -15px;
	right: -15px;
	background: #ffffff;
	color: var(--color-main);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 16px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

/* 4. ĐỊNH DẠNG ICON VÀ TIÊU ĐỀ BÊN TRONG */
.process .icon-inner {
	padding: 10px;
	border-radius: 12px;
	background: rgba(0, 102, 255, 0.05);
	display: inline-block;
	margin-bottom: 15px;
}

.process h3 {
	font-size: 24px !important;
	color: #1c2d52;
	font-weight: 700;
	margin-bottom: 10px;
}

/* Đường gạch ngang nhỏ dưới tiêu đề mỗi bước */
.process .icon-box-text h3::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	margin:20px 0px;
	background: #c81f00;
	margin-top: 20px;
	border-radius: 2px;
}


.process .col-inner:hover .icon-box-text h3{
	color: var(--color-main);
}
.process p {
	font-size: 14px;
	color: var(--color-black);
	line-height: 1.6;
}

.h-img img{
	border-radius:10px !important;
	overflow:hidden;
}

.Home-final li a{
	color: #000;
}
.Home-final li a:hover{
	color: var(--color-main);
}


.accordion-item .accordion-title.active{
	color: var(--color-main);
}
.accordion-item .accordion-title{
	color: var(--color-black);
}

.Home-final .button{
	border-radius: 10px;
	background: var(--color-main);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	margin: 20px auto;
	margin-top: 25px;
}
.flickity-prev-next-button:hover svg{
	background: var(--color-main) !important;
	border-color: var(--color-main) !important;
}
.flickity-viewport .post-item .box-blog-post{
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.from_the_blog_excerpt {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ct{
	padding-bottom:0px !important;
}
@media (max-width: 768px) {
	.process > .col:not(:first-child) .col-inner {
		padding: 25px 20px;
	}
	.middle-right{
		padding:5px !important;
	}
	.row2{
		padding-bottom:0px !important;
	}
	.halv{
		padding-bottom:0px !important;
	}
	.ct{
		padding-bottom:0px !important;
	}
	.Home-final .button{
		width: max-content;
	}
	.home-content .box-about .button{
		width:max-content !important;
	}
	.flex-grow .custom div{
		font-size: 7px !important;
		margin:1px !important;
	}
	.logo a img{
		margin:0px 10px !important;
	}
	.header-bottom .header-bottom-nav li a{
		padding: 15px !important;
	}
}