.header{
	background-color: #facfd2;
	padding: 10px 0;
}
.header_main.sticky{    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    animation: fadeInDown 1s ease;
}
.close_menu{
	width: 30px;
    height: 30px;
    color: #7f7676;
    font-weight: 600;
    border: 1px solid #d5d0d0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px;
    margin-left: auto;
    cursor: pointer;
}
.header .menu_action{
	text-decoration: none;
	color: #565656;
	font-size: 26px;
}
.header .brand_logo{
	max-width: 180px;
}
.menu_list{
	display: flex;
	justify-content: center;
	gap:30px;
}
.menu_layer{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 31, 45, 0.6);
    z-index: 5;
    opacity: 0;
    visibility: hidden;   
    transition: all 0.5s ease;
}
.menu_layer.active{
	opacity: 1;
	visibility: visible;
}


.menu_list li a{
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	text-decoration: none;
}
.breadcrumb_menu{
	padding: 12px 0;
	text-align: center;	
	background-color: #ffffff;
}
.breadcrumbmenu_list {
	display: flex;
	gap:20px;
	justify-content: center;
	padding-left: 65px;
}
.breadcrumb_menu li a{
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	text-decoration: none;
	padding-bottom: 5px;
	border-bottom: 4px solid transparent;
	display: inline-block;
}
.breadcrumb_menu li.active a{
	border-color: #facfd2;
}