  .header {
  	position: absolute;
  	width: 100%;
  	z-index: 99;
  	left: 0;
  	top: 0px;
  }

  .header .logo {
  	margin-left: 50px;
  	display: flex;
  	align-items: center;
  }

  .btn-nav {
  	display: none;
  	font-size: 24px;
  }

  .logo img {
  	width: 431px;
  	height: auto;
  }

  .top-right {
  	margin-right: 56px;
  	height: 125px;
  	display: flex;
  	align-items: center;
  }

  .top-right .xx {
  	height: 50px;
  	display: none;
  	margin-right: 20px;
  }

  .header .sarch {
  	display: flex;
  	height: 45px;
  	align-items: center;
  	position: relative;
  	border-radius: 24px;
  	background: #998c8c59;
  }

  .header .sarch .input {
  	width: 0px;
  	height: 40px;
  	transition: width 0.5s ease-in-out;
  	overflow: hidden;
  	border: none;
  }

  .sarch:hover .input {
  	width: 165px;
  }

  .header .sarch ::placeholder {
  	color: #fff;
  }

  .header .sarch .search-query {
  	height: 40px;
  	background: transparent;
  	margin-left: 5px;
  	border: none;
  	color: #fff;
  	border-radius: 20px;
  }

  .header .sarch .search-query:focus-visible {
  	outline-style: none;
  }

  .header .sarch .search-submit {
  	width: 45px;
  	text-align: center;
  }

  .header .navbar-list {
  	margin: -8px auto;
  	display: flex;
  	justify-content: space-between;
  }
  
  .header .navbar-list .nav-item a {
  	color: rgba(255, 255, 255, 1);
  	cursor: pointer;
  	font-family: Source Han Sans SC;
  	font-weight: 700;
  	font-size: 28px;
  	text-align: center;
  }

  .header .navbar-list .nav-item a:hover {
  	color: rgba(0, 123, 255, 1);
  }

  .menu {
  	margin-left: 20px;
  	cursor: pointer;
  }

  .menu img {
  	width: 25px;
  }

  .menu-box {
  	display: none;
  	position: fixed;
  	left: 0px;
  	top: 0px;
  	z-index: 121;
  	/* background-color: #000; */
  	background-image: url("/v5/images/menu-bg.jpg");
  	background-size: cover;
  	height: 100vh;
  	width: 100%;
  }

  .closeMenu {
  	cursor: pointer;
  	position: fixed;
  	right: 20px;
  	top: 20px;
  	z-index: 100;
  	background-color: #fff;
  	border-radius: 40px;
  	width: 40px;
  	height: 40px;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }

  .closeMenu img {
  	width: 20px;
  	height: 20px;
  }

  .closeMenu:hover {
  	transform: rotateY(180deg);
  	transition: all 1.5s;
  }

  .menu-header-logo {
  	margin-left: 50px;
  }

  .menu-header { 
  	padding: 10px 150px 40px 150px;
  	display: flex;
  	justify-content: space-between;
  	height: 50px;
  }

  .menu-list li {
  	text-align: center;
  }

  .menu-list li:first-child {
  	margin-bottom: 30px;
  	position: relative;
  }

  .menu-list li:first-child::after {
  	position: absolute;
  	content: '';
  	width: 50px;
  	height: 1px;
  	background-color: #fff;
  	left: 0;
  	top: 40px;
  	left: 50%;
  	transform: translateX(-25px);
  	transition: width 2s, height 2s;
  }

  .menu-list li:first-child a {
  	font-size: 22px;
  	font-weight: 500;
  }

  .menu-list a {
  	color: #fff;
  	font-size: 18px;
  	margin-bottom: 10px;
  	display: block;
  }

  .menu-list a:hover {
  	color: #2A5D84;
  }
 



  @media screen and (max-width: 1200px) {

  	.header {
  		position: absolute;
  		width: 100%;
  		z-index: 99;
  		left: 0;
  		top: 0px;
  	}

  	.logo img {
  		width: 220px;
  		height: auto;
  	}

  	.header .logo {
			height: 70px;
  		margin-left: 10px;
  	}

  	.menu {
  		display: none;
  	}

  	.header .top-right {
  		height: 70px;
  		margin-right: 10px;
  	}

  	.header .btn-nav {
  		display: block;
  	}
 
    .top-right .xx {
  		display: none;
        height: 70px;
        margin-right: 20px;
    }

  	.header .navbar-list {
  		position: absolute;
  		background: #fff;
  		z-index: 999;
  		left: 0;
  		top: 60px;
  		width: 50%;
  		box-shadow: 0px 4px 17px #c6bfbf;
  		transition: all 2s;
  		display: none;
  		margin: 0px;
  	}

  	.header .navbar-list .nav-item {
  		justify-content: flex-start;
  		width: 100%;
  		padding: 5px 10px;
  	}

  	.header .navbar-list .nav-item a {
  		font-size: 14px;
  		font-weight: 600;
  		color: #2A5D84;
  		cursor: pointer;
  	}

  	.header .navbar-list .nav-item a:hover {
  		color: rgba(0, 123, 255, 1);
  	}
  }