.company-header {
	text-align: center;
	font-family: Arial, sans-serif;
	/*     padding: 20px; */
}

.subtitle {
	font-weight: bold;
	color: var(--color-main); /* Màu vàng đồng */
	font-size: 25px;
	margin: 0;
	text-transform: uppercase;
}

.company-name {
	font-weight: bold;
	color: var(--color-main);
	font-size: 34px;
	margin: 0px 0;
}

.address {
	font-weight: bold;
	color: #000;
	font-size: 12px;
	margin: 0;
}

.header-main {
	height: 120px !important;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 50px;
	background: var(--color-white);
}

.header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;   
	gap: 8px;
}

.social-list {
	display: flex;
	gap: 20px;
}

.social-item {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	color: var(--color-main); 
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: 0.3s;
}

.social-item:hover {
	transform: scale(1.1);
}
.header-main .flex-grow  .header-nav-main{
	width:90%;
}
.hotline-box {
	display: flex;
	align-items: center;
	gap: 8px;
}

.phone-img {
	width: 40px;
	height: auto;
}

.info {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.info .label {
	font-size: 14px;
	font-weight: 600;
	color: #000;
}

.info .number {
	font-size: 24px;
	font-weight: 800;
	color: var(--color-main);
	line-height: 1;
}

.header-bottom  .hide-for-medium.flex-center{
	display: flex;
	justify-content: left;
	align-items: flex-end;
	margin: 0 0 0 20px;
}
.header-bottom .hide-for-medium.flex-left{
	display:none;
}
.header-bottom .hide-for-medium .header-bottom-nav{
	gap:40px;
}
.header-bottom .hide-for-medium .header-bottom-nav a{
	font-size:14px;
}

.header-bottom {
	min-height: 47px !important;
}

.header-search-form .flex-row {
	background-color: #fff; /* Nền ô tìm kiếm màu trắng để nổi trên nền vàng */
	border-radius: 50px;
	overflow: hidden;
	display: flex;
	align-items: center;
	height: 40px;
	border: 1px solid #ccc;
}

.header-search-form .search-field {
	background: transparent !important;
	border: none !important;
	padding: 0 15px !important;
	color: #333 !important;
	width: 200px;
}

.header-search-form .submit-button {
	background: var(--color-black) !important;
	color: var(--color-white) !important;
	border-radius: 0 50px 50px 0 !important;
	width: 50px !important;
	height: 100% !important;
}

.stuck .header-main{
	display:none;
}

.footer_page {
	position: relative;
	color: var(--color-white);
	background-color: var(--color-black);
}

.footer_page .section-content {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer_page .section-bg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.footer_page .row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.footer_page .col {
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	width: 100%;
}


.footer_page .col-inner > p:first-of-type {
	color: var(--color-main);
	font-weight: bold;
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.footer_page h1 {
	color: var(--color-main);
	font-size: 40px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 25px;
	line-height: 1.2;
}
.footer_page p {
	color: var(--color-white);
	font-size: 15px;
	line-height: 1.8;
	margin-bottom: 12px;
}

.footer_page h3 {
	color: var(--color-white);
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 30px;
}

.footer_page .ux-menu {
	border: none !important;
}
.footer_page .ux-menu .menu-item {
	border: none !important;
	padding: 0 !important;
	margin-bottom: 20px;
}

.footer_page .ux-menu-link__link {
	color: var(--color-white);
	text-decoration: none;
	font-size: 15px;
	transition: color 0.3s ease;
}

.footer_page .ux-menu-link__link:hover,
.footer_page .ux-menu-link__link:hover .ux-menu-link__text {
	color: var(--color-main);
}

@media (min-width: 768px) {
	.footer_page .col {
		width: 33.333333%;
	}

}
@media (max-width: 768px) {
	.subtitle {
		font-size: 15px;
	}
	.company-name {
		margin: 10px 0px;
		font-size: 30px;
	}
	.sidebar-menu .menu-item a{
		color: var(--color-black);
	}
	.sidebar-menu .menu-item:hover a{
		color: var(--color-main);
	}
}