.panel-header {
	position: relative;
}

.panel-header .inner {
	max-width: 1370px;
	width: 100%;
	margin: 0 auto;
}

.panel-header .top-nav-cont {
	display: flex;
	justify-content: space-between;
}

.panel-header .top-nav-cont .header-left {
	display: none;
}

.panel-header .top-nav-cont .header-right {
	display: none;
}

.panel-header .logo img { width: 100%; }

.panel-header .logo img.svg {
	width: 225px;
	height: 83px;
}

.panel-header .mobile-nav {
	width: 100%;
}


.panel-header .mobile-nav .logo a {
	padding: 15px 30px;
}

.panel-header .mobile-nav .logo img.svg {
	width: 115px;
	height: 42px;
}

.panel-header .mobile-nav .navbar {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	height: 65px;
	border-bottom: 4px solid #fff;
	background-color: #6e6d3c;
	color: #fff;
}
.panel-header .mobile-nav.active .navbar {
	border-bottom: 4px solid #6e6d3c;
}

.panel-header .mobile-nav .nav-toggle {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 20px;
	background-color: unset;
	margin-bottom: 0;
}

.panel-header .mobile-nav .nav-toggle .fa-search,
.panel-header .mobile-nav .nav-toggle .fa-bars {
	padding: 9px;
	border-radius: 50%;
	border: 2px solid #fff;
	font-size: 10px;
	background-color: #474627;
}
.panel-header .mobile-nav .nav-toggle .fa-search {
	margin-right: 10px;
}
.panel-header .mobile-nav .nav-toggle .closer,
.panel-header .mobile-nav.active .nav-toggle .fa-bars,
.panel-header .mobile-nav.active .nav-toggle .fa-search {
	display: none;
}
.panel-header .mobile-nav.active .nav-toggle .closer {
	display: inline-block;
}
.panel-header .mobile-nav .nav-toggle .closer {
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 50px;
	border: 2px solid #fff;
	background-color: #474627;
	font-size: 11px;
}
.panel-header .mobile-nav .nav-toggle .closer i {
	color: #fff;
	font-size: 11px;
}

.panel-header .mobile-nav .mobile-dd {
	display: none;
	padding-top: 10px;
	position: absolute;
	top: 100%;
	right: 0;
	width: 100%;
	background-color: #6e6d3c;
	z-index: 30;
}
.panel-header .mobile-nav .mobile-dd .search-cont {
	width: 90%;
	margin: 0 auto 20px;
}
.panel-header .mobile-nav .mobile-dd .search-cont .headerbox-search-form input[type="search"] {
	height: 43px;
}
.panel-header .mobile-nav .mobile-dd .search-cont .headerbox-search-form button {
	height: 43px;
	width: 43px;
	right: 3px;
	background-color: #474627;
}

.panel-header .mobile-nav.active .mobile-dd { display: block; }

/* Hamburger icon */
.panel-header .mobile-nav .hamburger-inner {
	position: relative;
}

.panel-header .mobile-nav .hamburger-inner::after,
.panel-header .mobile-nav .hamburger-inner::before {
	position: absolute;
}

.panel-header .mobile-nav .hamburger-inner,
.panel-header .mobile-nav .hamburger-inner::after,
.panel-header .mobile-nav .hamburger-inner::before {
	width: 28px;
	height: 2px;
	background-color: white;
	transition-property: transform;
	transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.panel-header .mobile-nav .hamburger-inner::before {
	content: "";
	display: block;
	top: -7px;
	transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.panel-header .mobile-nav .hamburger-inner::after {
	content: "";
	display: block;
	bottom: -7px;
	transition: bottom 0.075s 0.12s ease,transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.panel-header .mobile-nav.active .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.panel-header .mobile-nav.active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.panel-header .mobile-nav.active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.075s ease,transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* end hamburger icon */

/* Social icons */
.panel-header .header-right .contentRender_name_plugins_collections_template_custom_social_links {
	margin-right: auto;
	margin-left: 30px;
}
.panel-header ul.social-links {}
.panel-header ul.social-links li {
	margin-right: 20px;
}
.panel-header ul.social-links li a {
	color: #fff;
	vertical-align: text-bottom;
}
.panel-header ul.social-links li a:hover {
	color: #474627;
}
.panel-header ul.social-links li a i {
	font-size: 17px;
	font-weight: 400;
}

.panel-header .mobile-nav ul.social-links {
	display: block;
	padding: 20px;
	text-align: center;
}
.panel-header .mobile-nav ul.social-links li {
	display: inline-block;
	margin: 0 12px;
}
.panel-header .mobile-nav ul.social-links li a {
	display: inline-block;
	height: 40px;
	width: 40px;
	border: 2px solid #fff;
	padding: 2px 10px;
	background-color: #474627;
	border-radius: 50%;
	line-height: 1;
}
.panel-header .mobile-nav ul.social-links li a i {
	font-size: 16px;
}

@media screen and (min-width: 1025px) {
	.panel-header {
		position: relative;
		background-color: #6e6d3c;
		color: #fff;
		border-bottom: 10px solid #fff;
	}

	.panel-header .inner {
		padding: 15px;
	}

	.panel-header .top-nav-cont .header-left,
	.panel-header .contentRender_name_plugins_common_logo {
		display: flex;
		align-items: center;
		flex: 2;
	}
	
	.panel-header .top-nav-cont .header-right {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		flex: 7;
	}

	.panel-header .top-nav-cont .header-right-top,
	.panel-header .top-nav-cont .header-right-bottom {
		display: flex;
		align-items: center;
		width: 100%;
	}

	.panel-header .top-nav-cont .mobile-nav {
		display: none;
	}
}
