:root{
	--ls-primary: #004097;
	--ls-ink:#0f172a;
	--ls-muted:#64748b;
	--ls-bg:#f6f8fc;
	--ls-card:#ffffff;
	--ls-ring: rgba(0,64,151,.22);
}
@font-face {
  font-family: 'fontP';
  src: url('/wp-content/themes/flatsome-child/font/Allura-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'fontmain';
  src: url('/wp-content/themes/flatsome-child/font/GoogleSans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
	font-family: 'fontmain';
}
.cabout{
	background: #fbf7f0;
	position:relative;
	overflow:hidden;
	padding: 74px 0;
	color: #1b1b1b;
}

.cabout__container{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 18px;
	position:relative;
	z-index:2;
}

.cabout__grid{
	display:grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 46px;
	align-items:center;
}

/* LEFT */
.cabout__pill{
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(0, 64, 151, .15);
	color: var(--ls-primary);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .2px;
}

.cabout__title{
	font-family: 'fontP';
	margin: 8px 0 0;
	line-height: 1.9;
	letter-spacing: -.6px;
	color: var(--ls-primary);
	font-style: italic;
	display: block;
	font-size: 62px;
	font-weight: 900;
	letter-spacing: 4.4px;
	line-height: 1.3;
	margin-bottom: 30px;
}
.cabout__t2{
	display: block;
	font-size: 20px;
	font-weight: 500;
	text-align: justify;
	line-height: 1.5;
	letter-spacing: -0.6px;
}

.cabout__desc{
	margin: 18px 0 0;
	max-width: 520px;
	color: rgba(27,27,27,.72);
	line-height: 1.85;
	font-size: 16px;
}

.cabout__btn{
	margin-top: 26px;
	display:inline-flex;
	align-items:center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: 16px;
	background: var(--ls-primary);
	color:#fff;
	text-decoration:none;
	font-weight: 800;
	box-shadow: 0 24px 65px rgba(0,0,0,.18);
	transition: transform .16s ease, box-shadow .16s ease;
}
.cabout__btn:hover{
	transform: translateY(-2px);
	box-shadow: 0 32px 85px rgba(0,0,0,.22);
}
.cabout__btn-ico{
	width: 34px;
	height: 34px;
	border-radius: 12px;
	display:grid;
	place-items:center;
	background: rgba(255,255,255,.10);
}
a.icon-circle:hover, a.remove:hover, a:hover {
	color: #FFF;
}
/* RIGHT - image stack */
.cabout__right{
	display:flex;
	justify-content:flex-end;
}

.cabout__stack {
	position: relative;
	width: min(630px, 117vw);
	height: 768px;
	left: 140px;
	top: 33px;
	transform-style: preserve-3d;
	perspective: 900px;
}

.cabout__card{
	position:absolute;
	border-radius: 22px;
	overflow:hidden;
	box-shadow: 0 30px 90px rgba(0,0,0,.18);
	transform-style: preserve-3d;
	transition: transform .25s ease, box-shadow .25s ease;
	background:#fff;
}
.cabout__card img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
}

/* layout giống hình */
.cabout__card.is-back{
	width: 360px;
	height: 440px;
	right: 10px;
	top: 10px;
	transform: rotate(2deg);
	border-radius: 26px;
}

.cabout__card.is-front{
	width: 340px;
	height: 420px;
	left: 70px;
	bottom: 10px;
	transform: rotate(-8deg);
	border: 10px solid rgba(255,255,255,.92);
}

.cabout__card.is-mid{
	width: 220px;
	height: 250px;
	right: 240px;
	top: 130px;
	transform: rotate(10deg);
	border: 8px solid rgba(255,255,255,.92);
	opacity:.98;
}

/* hover glow */
.cabout__stack:hover .cabout__card{
	box-shadow: 0 42px 120px rgba(0,0,0,.22);
}

/* placeholder */
.cabout__placeholder{
	width:100%;
	height:100%;
	border-radius: 22px;
	border:1px dashed rgba(0,0,0,.18);
	display:grid;
	place-items:center;
	color: rgba(0,0,0,.55);
	background: rgba(255,255,255,.55);
}

/* ambient glows */
.cabout__glow{
	position:absolute;
	width: 520px;
	height: 520px;
	border-radius: 999px;
	filter: blur(36px);
	opacity:.35;
	pointer-events:none;
}
.cabout__glow--a{
	left:-220px;
	top:-220px;
	background: radial-gradient(circle at 35% 35%, rgba(26,163,111,.55), transparent 60%);
}
.cabout__glow--b{
	right:-240px;
	bottom:-260px;
	background: radial-gradient(circle at 40% 40%, rgba(0,0,0,.18), transparent 60%);
}

/* responsive */
@media (max-width: 980px){
	.cabout__grid { 
		grid-template-columns: 1fr;
	}
	.cabout__right {
		justify-content:center;
	}
	.cabout__title { 
		font-size: 30px;
	}
	.cabout__t2 {
		font-size: 16px;
	}
	.cabout__stack { 
		height: 380px;
	}
	.cabout__stack {
		width: 100%;
		left: 0;
	}
}
@media (max-width: 520px){
	.cabout { 
		padding: 56px 0;
	}
	.cabout__title { 
		font-size: 36px;
	}
	.cabout__t2 {
		font-size: 17px;
	}
	.cabout__card.is-back {
		width: 280px; 
		height: 280px;
	}
	.cabout__card.is-front {
		width: 280px;
		height: 310px;
		left: 30px; 
	}
	.cabout__card.is-mid {
		display:none;
	}
	.tnsmgt h2 {
		font-size: clamp(20px, 3vw, 40px);
	}
}
/* history */   
.timeline097{
	padding:80px 0;
	background:var(--ls-bg);
}

.timeline-container{
	max-width:1200px;
	margin:auto;
	display:flex;
	flex-direction:column;
	gap:18px;
}

/* Tabs ngang */
.timeline-left{
	display:flex;
	gap:12px;
	flex-wrap:nowrap;
	justify-content: center;
	padding-bottom:6px;
	scrollbar-width:thin;
}

.timeline-pill{
	background:var(--ls-card);
	border:none;
	padding:12px 18px;
	border-radius:40px;
	font-weight:600;
	cursor:pointer;
	transition:.25s;
	color:var(--ls-ink);
	box-shadow:0 4px 12px var(--ls-ring);
	white-space:nowrap;
	margin: 0;
	line-height: 1;
	flex:0 0 auto;
}
.timeline-pill:hover{ transform:translateY(-2px); }
.timeline-pill.active{
	background:var(--ls-primary);
	color:#fff;
}

/* Panel bên phải giờ là 1 khung ngang */
.timeline-right{
	position:relative;
	background:var(--ls-card);
	padding:26px 24px 30px;
	border-radius:14px;
	box-shadow:0 10px 30px rgba(0,0,0,0.05);
	overflow:hidden;
}

/* mỗi tab content ẩn/hiện */
.timeline-content{
	display:none;
}
.timeline-content.active{
	display:block;
}

/* Title */
.timeline-title{
	font-size:38px;
	font-weight:800;
	color:var(--ls-ink);
	margin:0 0 16px;
}

/* vùng timeline ngang có scroll */
.timeline-track{
	overflow-x:auto;
	overflow-y:hidden;
	scroll-behavior:smooth;
}

.timeline-items{
	position:relative;
	display:flex;
	gap:28px;
	align-items:flex-start;
	min-width:max-content;
	padding:26px 10px 10px; /* giữ khoảng như cũ */
}

/* line nền full chiều ngang nội dung */
.timeline-line{
	position:absolute;
	left:10px;
	right:10px;
	top: 28px;
	height:3px;
	background:#e5e7eb;
	border-radius:3px;
}

/* progress chạy theo scroll ngang */
.timeline-progress{
	position:absolute;
	left: 0;
	top: 29px;
	height:3px;
	width:0;
	background:var(--ls-primary);
	border-radius:3px;
	transition:width .1s linear;
}

/* list item ngang */
.timeline-items{
	display:flex;
	gap:28px;
	align-items:flex-start;
	min-width:max-content; /* để item kéo dài theo ngang */
	padding:0 10px;
}

.timeline-item{
	width:280px;
	opacity:0;
	transform:translateY(16px);
	transition:.5s;
	position:relative;
	padding-top:10px;
}

/* dot nằm trên line */
.timeline-item::before{
	content:"";
	position:absolute;
	left: 50%;
	top:22px;              /* khớp với line top */
	width:14px;
	height:14px;
	background:var(--ls-primary);
	border-radius:50%;
	transform:translateX(-50%);
	box-shadow:0 0 0 4px var(--ls-ring);
}

/* để dot nằm giữa card item: neo theo giữa item */
.timeline-item{
	padding-left:0;
}
.timeline-item .timeline-year,
.timeline-item .timeline-text{
	margin-left:0;
}

.timeline-item.show{
	opacity:1;
	transform:translateY(0);
}

.timeline-year{
	color:var(--ls-primary);
	font-size:18px;
	text-align: center;
	font-weight:800;
	margin: 38px 0 8px;
}

.timeline-text{
	color:var(--ls-muted);
	line-height:1.7;
}

/* mobile */
@media(max-width:900px){
	.timeline-title{ font-size:30px; }
	.timeline-item{ width:240px; }
}


/* cung ứng */
:root{
	--bs-accent:#ff5a1f;
	--bs-text:#222;
	--bs-muted:#7a7a7a;
	--bs-line:#d9d9d9;
}

.bsx{
	padding:80px 0;
	background:#fff;
}

.bsx-container{
	max-width:1200px;
	margin:auto;
	padding:0 20px;
}

.bsx-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	border-top:1px solid var(--bs-line);
	border-bottom:1px solid var(--bs-line);
}

.bsx-col{
	padding:50px 40px;
	position:relative;
	transition:.35s;
}

.bsx-col:not(:first-child){
	border-left:1px solid var(--bs-line);
}

.bsx-small{
	color:var(--ls-primary);
	font-weight:700;
	font-size:22px;
	margin-bottom:18px;
}

.bsx-big{
	font-size:40px;
	font-weight:900;
	margin-bottom:20px;
	color:#444;
}

.bsx-desc{
	color:var(--bs-muted);
	line-height:1.8;
	font-size:16px;
}

/* hover effect */

.bsx-col:hover{
	background: linear-gradient(180deg, rgb(0 64 151 / 5%), transparent);
	transform:translateY(-4px);
}

/* responsive */

@media(max-width:900px){

	.bsx-grid{
		grid-template-columns:1fr;
	}

	.bsx-col{
		border-left:none;
		border-top:1px solid var(--bs-line);
	}

	.bsx-col:first-child{
		border-top:none;
	}

	.bsx-title{
		font-size:40px;
	}
}
.timeline_title,
.bsx-title,
.gallery h2,
.clients h2,
.blogs h2{
	margin-bottom: 40px;
	font-size: 44px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: .2px;
	color: var(--ls-primary);
	text-shadow: 0 10px 35px rgba(0, 64, 151, .55);
	text-align: center;
}
@media (max-width: 640px){
	.timeline_title,
	.bsx-title,
	.gallery h2,
	.clients h2,
	.tnsmgt h2 {
	        font-size: 26px;
        max-width: 80%;
        place-self: anchor-center;
}
	.blogs h2 {
		font-size: 42px;
	}
	.bsx-big {
		font-size: 30px;
    margin-bottom: 15px;

	}
	
}
/* blogs */
/* khung tổng */
.row.large-columns-2.medium-columns-1.small-columns-1.has-shadow.row-box-shadow-2{
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin: 0 !important;
	max-width: 1280px;
}

/* mỗi bài */
.row.large-columns-2.medium-columns-1.small-columns-1.has-shadow.row-box-shadow-2 > .col.post-item{
	flex: 0 0 calc(50% - 14px);
	max-width: calc(50% - 14px);
	padding: 0 !important;
}

/* card */
.post-item .col-inner{
	height: 100%;
	background: linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);
	border: 1px solid #dbe3ef;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
	position: relative;
}

/* ánh sáng nghệ thuật */
.post-item .col-inner::before{
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(59,130,246,.08), transparent 32%),
	            radial-gradient(circle at bottom right, rgba(14,165,233,.08), transparent 28%);
	pointer-events: none;
	z-index: 0;
}

/* hover nổi bật */
.post-item:hover .col-inner{
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
	border-color: #c9d8ef;
}

/* layout ngang */
.post-item .box-blog-post{
	display: flex;
	align-items: stretch;
	position: relative;
	z-index: 1;
}

/* ảnh trái */
.post-item .box-image{
	width: 40% !important;
	min-width: 40%;
	position: relative;
	overflow: hidden;
	border-radius: 28px 0 0 28px;
}

/* khung ảnh */
.post-item .box-image .image-cover{
	position: relative;
}

/* ảnh fill đẹp */
.post-item .box-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .7s ease, filter .5s ease;
}

/* overlay nhẹ */
.post-item .box-image .overlay{
	background: linear-gradient(180deg, rgba(8,15,35,.12), rgba(8,15,35,.26)) !important;
	transition: opacity .4s ease;
}

/* ảnh hover */
.post-item:hover .box-image img{
	transform: scale(1.08);
	filter: saturate(1.08) contrast(1.03);
}

/* phần text */
.post-item .box-text{
	width: 60%;
	padding: 28px 30px 24px;
	display: flex;
	align-items: center;
	background: transparent;
}

.post-item .box-text-inner{
	width: 100%;
}

/* bỏ divider mặc định */
.post-item .is-divider{
	display: none;
}

/* title */
.post-item .post-title{
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.35;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.post-item .post-title a{
	color: #0f172a;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-decoration: none;
	transition: color .35s ease, text-shadow .35s ease;
}

.post-item:hover .post-title a{
	color: #003b95;
	text-shadow: 0 8px 24px rgba(0, 59, 149, 0.12);
}

/* excerpt */
.post-item .from_the_blog_excerpt{
	margin: 0;
	font-size: 12px;
	line-height: 1.75;
	color: #64748b;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* badge chuyên mục giả lập */
/* .post-item .box-text-inner::before{
	content: "NEWS";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: linear-gradient(135deg,#f8fafc,#eef4ff);
	border: 1px solid #d8e4f7;
	color: #0b4ea2;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	box-shadow: 0 6px 18px rgba(37,99,235,.08);
} */

/* nút xem chi tiết giả lập */
/* .post-item .from_the_blog_excerpt::after{
	content: "Xem chi tiết ↗";
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	font-weight: 700;
	font-size: 15px;
	color: #004aad;
} */

/* hiệu ứng viền sáng */
.post-item .col-inner::after{
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 28px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255,255,255,.7), rgba(59,130,246,.18), rgba(255,255,255,.4));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	opacity: .7;
}

/* khoảng cách giữa các card */
.post-item{
	margin-bottom: 12px;
}

/* responsive tablet */
@media (max-width: 991px){
	.row.large-columns-2.medium-columns-1.small-columns-1.has-shadow.row-box-shadow-2 > .col.post-item{
		flex: 0 0 100%;
		max-width: 100%;
	}

	.post-item .box-blog-post{
		min-height: 270px;
	}

	.post-item .box-image .image-cover{
		min-height: 270px;
	}
}

/* responsive mobile */
@media (max-width: 767px){
	.post-item .box-blog-post{
		flex-direction: column;
		min-height: auto;
	}

	.post-item .box-image,
	.post-item .box-text{
		width: 100% !important;
		min-width: 100%;
	}

	.post-item .box-image{
		border-radius: 28px 28px 0 0;
	}

	.post-item .box-image .image-cover{
		min-height: 220px;
	}

	.post-item .box-text{
		padding: 22px 20px 22px;
	}

	.post-item .post-title{
		font-size: 20px;
	}

	.post-item .from_the_blog_excerpt{
		font-size: 15px;
		line-height: 1.7;
	}
}

.tnsmgt{
	--brand:#004097;
	--brand-2:#0a5bd6;
	--ink:#0b1220;
	--muted:#5b6476;
	--bg:#f6f9ff;
	--shadow: 0 16px 40px rgba(12, 24, 54, .12);
	--shadow-2: 0 26px 60px rgba(0, 64, 151, .18);
	--radius: 22px;

	font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
	color:var(--ink);
	background:
		radial-gradient(1200px 800px at 10% 10%, rgba(0,64,151,.10), transparent 55%),
		radial-gradient(900px 600px at 90% 25%, rgba(10,91,214,.10), transparent 55%),
		linear-gradient(180deg, #ffffff 0%, var(--bg) 60%, #ffffff 100%);
	padding: clamp(18px, 4vw, 34px);
}

.tnsmgt .header{
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 16px;
	margin-bottom: 45px;
}
.tnsmgt .kicker{
	display:inline-flex; align-items:center; gap:10px;
	padding:8px 12px; border-radius:999px;
	background: rgba(0,64,151,.08);
	color: var(--brand);
	font-weight:600;
	border: 1px solid rgba(0,64,151,.14);
	backdrop-filter: blur(6px);
}
.tnsmgt .dot{
	width:10px;height:10px;border-radius:999px;
	background: conic-gradient(from 180deg, var(--brand), var(--brand-2));
	box-shadow: 0 0 0 4px rgba(0,64,151,.12);
}
.tnsmgt h2{
	margin:10px 0 0;
	font-size: clamp(22px, 3vw, 40px);
	line-height:1.05; 
	text-shadow: 0 10px 35px rgba(0, 64, 151, .55);
	letter-spacing:-.6px;
	color: var(--ls-primary);
	text-align: center;
}
.tnsmgt .sub{
	margin: 10px 0 0;
	color: var(--muted);
	max-width: 62ch;
	font-size: 15.5px;
	line-height: 1.6;
}

.tnsmgt .grid{
	display:grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
}
.tnsmgt .card{
	grid-column: span 4;
	background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
	border: 1px solid rgba(12,24,54,.10);
	border-radius: var(--radius);
	padding: 18px 18px 16px;
	position: relative;
	overflow:hidden;
	box-shadow: var(--shadow);
	transform: translateZ(0);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tnsmgt .card::before{
	content:"";
	position:absolute; inset:-2px;
	background:
		radial-gradient(520px 140px at 10% 0%, rgba(0,64,151,.22), transparent 60%),
		radial-gradient(420px 140px at 90% 10%, rgba(10,91,214,.18), transparent 58%);
	opacity:0; transition: opacity .22s ease; pointer-events:none;
}
.tnsmgt .card::after{
	content:"";
	position:absolute; left:16px; right:16px; bottom:0;
	height: 3px; border-radius: 999px;
	background: linear-gradient(90deg, transparent, rgba(0,64,151,.85), rgba(10,91,214,.85), transparent);
	transform: translateX(-18%) scaleX(.55);
	opacity: 0;
	transition: transform .34s ease, opacity .22s ease;
	pointer-events:none;
}
.tnsmgt .card:hover{
	transform: translateY(-6px);
	box-shadow: var(--shadow-2);
	border-color: rgba(0,64,151,.28);
}
.tnsmgt .card:hover::before{ opacity:1; }
.tnsmgt .card:hover::after{ opacity:1; transform: translateX(18%) scaleX(1); }

.tnsmgt .top{ display:flex; gap:14px; align-items:flex-start; }
.tnsmgt .icon{
	width:46px;height:46px;border-radius:16px;
	display:grid; place-items:center;
	background:
		radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.0)),
		linear-gradient(135deg, rgba(0,64,151,.14), rgba(10,91,214,.10));
	border: 1px solid rgba(0,64,151,.18);
	box-shadow: 0 10px 20px rgba(0,64,151,.12);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
	flex: 0 0 46px;
}
.tnsmgt .card:hover .icon{
	transform: rotate(-2deg) scale(1.04);
	box-shadow: 0 14px 26px rgba(0,64,151,.18);
	border-color: rgba(0,64,151,.30);
}

.tnsmgt .title{
	margin:0;
	font-size: 26px;
	color: var(--ls-primary);
	letter-spacing: -0.2px;
	display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.tnsmgt .tag{
	font-size: 12px;
	font-weight: 700;
	color: var(--brand);
	background: rgba(0,64,151,.08);
	border: 1px solid rgba(0,64,151,.14);
	padding: 6px 10px;
	border-radius: 999px;
	white-space:nowrap;
}
.tnsmgt .content{
	margin: 10px 0 0;
	color: var(--muted);
	line-height: 1.65;
	font-size: 14.8px;
}

/* Responsive */
@media (max-width: 980px){
	.tnsmgt .card{ grid-column: span 6; }
	.tnsmgt .header{ align-items:flex-start; }
}
@media (max-width: 640px){
	.tnsmgt .card{ grid-column: span 12; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
	.tnsmgt .card,
	.tnsmgt .icon,
	.tnsmgt .card::before,
	.tnsmgt .card::after{ transition:none !important; }
	.tnsmgt .card:hover{ transform:none; }
}
/* =========================
Scroll Animation
========================= */

.tnsmgt .card{
	opacity:0;
	transform: translateY(40px) scale(.96);
}

.tnsmgt .card.reveal{
	opacity:1;
	transform: translateY(0) scale(1);
	transition:
		opacity .7s cubic-bezier(.22,.61,.36,1),
		transform .7s cubic-bezier(.22,.61,.36,1);
}

/* delay từng card */
.tnsmgt .card:nth-child(1){transition-delay:.1s}
.tnsmgt .card:nth-child(2){transition-delay:.25s}
.tnsmgt .card:nth-child(3){transition-delay:.4s}

/* Mobile */
@media (max-width:768px){
	.tnsmgt .card{
		transform: translateY(30px);
	}
}
.searchform .button.icon {
	background: #004097;
}

/** Chỉnh sửa */
#menu-item-802 a {
    color: #FFF !important;
    font-size: 0 !important;
}