#container_menu_top, #apptitle {
	display: none;
}

#innercontainer {
	header {
		padding: 0;
		background: #FFF;
	}
}

.b_header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1270px;
	width: 100%;
	height: 110px;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;

	.b_menu-search-container {
		margin-right: auto;	
	}

	#header_top {
		display: none;
	}

	#header {
		height: 100%;
		display: flex;
		align-items: center;

		p {
			display: flex;
			margin: unset;
			
			a {
				display: flex;
			}
			
			img {
				width: 150px;
				margin-right: 50px;
			}
		}
	}

	.header-right {
		margin: 0;
		color: #000;
		font-weight: 600;
		font-size: 23px;
	}

}

#logo {
	height: 47px;
	margin-left: 0;
}

.menu {
	display: flex;
	align-items: center;
	padding: 0;

	li {
		list-style: none;
		margin: 0;

		a {
			display: inline-block;
			width: 100%;
			padding: 20px;
			color: #737373;
			font-size: 18px;
			font-weight: 600;
			text-align: center;
			text-decoration: none;
			transition: .3s ease-in-out all;
			box-sizing: border-box;			

			&:hover,
			&.active-link {
				color: #000;
			}
		}
	}
}

#pull, .menu-button {
	display: none;
}

@media screen and (max-width: 1050px) {
	.menu {
		display: none;

		li {

			a {
				min-width: 200px;
				font-size: 16px;
			}
		}
	}

	.b_menu-search-wrapper {
		position: unset;
	}

	.menu.b_menu-open {
		display: flex;
		justify-content: unset;
		gap: 25px;
		align-items: start;
		padding-left: 10px;
		transition: all 0.3s ease-in-out;
		height: 0;

		&.b_menu-open {
			position: absolute;
			left: 0;
			top: 60px;
			padding: 0;
			height: fit-content;
			background: #fff;
			box-shadow: 2px 2px 4px 0px rgb(110 110 110 / 17%);
			transition: .3s;
			line-height: 3rem;
			z-index: 98;
			
			
			li {
				display: block;
		        text-align: left;
		        border-bottom: 1px solid #ededed;
			}
		}
	}

	#container_menu .b_menu-open {
		display: block;
	}

	.of-hidden {
		overflow: visible !important;
	}

	#custommenu {
		display: none;
		position: absolute;
		top: 90px;
		left: 0;
		padding-bottom: 0px;
		background: #00417A;
		line-height: 4rem;
		width: 100vw;
		z-index: 99;
		transition: 0.3s;
		-webkit-box-shadow: 3px 3px 3px -1px rgba(0, 0, 0, 0.5);
		-moz-box-shadow: 3px 3px 3px -1px rgba(0, 0, 0, 0.5);
		box-shadow: 3px 3px 3px -1px rgba(0, 0, 0, 0.5);
	}

	.topheader ul {
		margin: 0;
	}
	.b_header-wrapper {
		height: 65px;
		padding-left: 0;
		

		.b_menu-search-container {
			order: 1;
			margin: 0;

		}
	}

	#header {
		order: 2;
		margin: 0 auto 0 30px;
	}

	.header-right {
		order: 3;
	}

	#pull {
		color: #353535;
		display: flex;
		align-items: center;
		width: 60px;
		height: 60px;
		text-decoration: none;
		justify-content: center;
		cursor: pointer;
		font-size: 14px;

		&:before {
			content: "\f0c9";
			font-family: "Font Awesome 6 Pro";
			font-size: 16px;
			display: inline-block;
			vertical-align: middle;
			transform: rotate(180deg);
			transition: transform 150ms ease;
		}

		&[aria-expanded="true"]:before {
			content: "\f00d";
		}
	}
}