#container-header {
	display:flex;
	flex-direction: column;
	position:fixed;
	z-index:999;
	width:100%;
	max-width:1440px;
	margin:0 auto;
	height:60px;
	overflow-x:clip;
}

.sticky-header {
	top: 0px;
	left: 0px;
	right: 0px;
}
.sticky-header.stuck {
	
}

#container-strip {
	height:0px;
	width:100%;
	max-width:1440px;
	margin:0 auto;
	background: linear-gradient(90deg, var(--color-main-bg) 0%, var(--color-theme-blue) 100%);
	padding-right:30px;
	display:none;
}

ul.strip-menu {
	list-style: none;
	padding: 0 25px;
	margin: 0 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	font-weight: normal;
	font-size: 14px;
	height: 40px;
	justify-content: flex-end;
}

ul.strip-menu li {
	font-family: 'Roboto', sans-serif;
	color:#fff;
	margin-left:1.75em;
	font-weight:bold;
}

ul.strip-menu li a {
	color:#fff;
}

ul.strip-menu li:last-child {
	
}

ul.nav-menu {
	display:flex;
	flex-direction: row;
	align-items:center;
	font-weight:normal;
	font-size:1em;
	gap:1.25em;
}

ul.nav-menu li {
	height:100%;
}

button#btn_mobileMenu-show {
	background:none;
	border:none;
	width: 30px;
	height: 25px;
	position: relative;
	margin: 17px auto;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

button#btn_mobileMenu-show span {
	display: block;
	position: absolute;
	height: 5px;
	width: 100%;
	background: var(--color-theme-blue);
	border-radius: 1px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

button#btn_mobileMenu-show span:nth-child(1) {
	top: 0px;
 }
 
 button#btn_mobileMenu-show span:nth-child(2) {
	top: 10px;
 }
 
 button#btn_mobileMenu-show span:nth-child(3) {
	top: 20px;
 }

 button#btn_mobileMenu-show.open span {
	background: var(--color-bg-blue-dark-ultra);
 }
 
 button#btn_mobileMenu-show.open span:nth-child(1) {
	top: 10px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
 }
 
 button#btn_mobileMenu-show.open span:nth-child(2) {
	opacity: 0;
	left: -60px;
 }
 
 button#btn_mobileMenu-show.open span:nth-child(3) {
	top: 10px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-o-transform: rotate(-135deg);
	transform: rotate(-135deg);
 }




ul.nav-menu li a {
	font-family: "FuturaEagle", sans-serif;
	text-transform: uppercase;
	display:flex;
	height:100%;
	align-items:center;
}

ul.nav-menu li a span {
	color: var(--color-blue);
	font-size: 1em;
	transition: font-size 0.3s, color 0.3s;
}

ul.nav-menu li a:hover span {
	color: var(--color-blue-dark);
	font-size: 1em;
}

.nav-menu-hide {
	display:none;
}

#header-block-navigation {
	display: none;
	
}

#header-body {
	display:flex;
	box-shadow: 0 20px 30px -20px rgb(0 0 0 / 0.5);
	max-width:1440px;
	width:100%;
	background:#fff;
	/*background: linear-gradient(90deg, var(--color-white) 75%, var(--color-bg-blue) 100%);*/
	justify-content: space-between;
	height:80px;
	font-family:'Roboto', sans-serif;
}

#logo-block {
	position:absolute;
	top:-30px;
	left:-70px;
}

#logo-block svg {
	fill: var(--color-theme-blue);
}

#logo-eagle {
	position:absolute;
	top:0px;
}

#logo-eagle > a {
	outline: none;
}

#logo-eagle > a > img {
	position:relative;
	max-height:36px;
	top:42px;
	left:85px;
}

.kovax-brand {
	height: 100%;
	display: flex;
	align-items: center;
}

.kovax-brand img {
	max-height: 38px;
	margin-left: 175px;
}

#mobile-navigation {
	display:flex;
	padding-right:20px;
	font-size: 1.5em;
}

.menu-drawer-container {
	display:none;
	
}

.menu-drawer-slate {
	position: absolute;
	width:100%;
	margin:0;
	top:0px;
	background: #fff;
	background: linear-gradient(0deg, var(--color-bg-white) 0%, var(--color-bg-blue-light) 100%);
	/*color:#fff;*/
	overflow:hidden;
	transition:top 0.2s ease-in-out, opacity 0.3s ease-in-out, max-height 0.2s ease-in-out;
	z-index:-2;
	opacity:0;
	max-height:0px;
}

.menu-drawer-slate.drawer-show {
	opacity:1;
	top:80px;
	height:fit-content;
	max-height:450px;
}

.menu-drawer-item {
	position: relative;
	visibility:hidden;
	max-height: 0;
	opacity:0;
	padding:0px;
	width:100%;
	left:-30px;
	z-index:-1;
	
}

.menu-drawer-item.drawer-active {
	transition:opacity 0.3s ease-in-out,visibility 0.3s ease-in-out;
	visibility:visible;
	left:0px;
	opacity:1;
	max-height:fit-content;
}

.menu-drawer-item.drawer-active.slide {
	transition:opacity 0.3s ease-in-out,visibility 0.3s ease-in-out,left 0.3s;
}

.drawer-contents {
	padding:35px 50px;
}


.blur-curtain {
	z-index:999;
	/*backdrop-filter:blur(10px);*/
	position:fixed;
	top:0;bottom:0;
	left:0;right:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.5);
	opacity:0;
	visibility:hidden;
	transition: 
		opacity 0.3s cubic-bezier(.4,0,.6,1) 80ms,
		visibility 0.3s step-end 80ms;
}

.blur-curtain.blur-curtain-show {
	opacity:1;
	visibility: visible;
	transition: 
		opacity 0.3s cubic-bezier(.4,0,.6,1) 80ms,
		visibility 0.3s step-start 80ms;
}

#search-drawer {
	position: absolute;
	display:none;
}

#mobile-menu {
	/*display:flex;*/
	position:fixed;
	top:55px;right:0px;
	left:auto;
	width:100%;
	height:calc(100vh - 55px);
	z-index:995;
	background:rgba(12,58,89,0.96);
	padding:35px 20px 30px;
	transform: translateX(100%);
	opacity:0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	overflow-y:auto;
}

#mobile-menu.show {
	transform: translateX(0);
	opacity:1;
}

.mobileMenu-container {

}

.mobileMenu-search {
	
}

.mobileMenu-links {
	
}

.mobileMenu-links ul {
	list-style:none;
	margin:0;
	padding:0;
}

.mobileMenu-links ul li {
	margin:10px 0;
	padding:0;
	color:#fff;
	font-size:1em;
}

.mobileMenu-search > input {
	border:none;
	width: 100%;
	padding: 12px 15px;
	border-radius:8px;
}

.content-links{
	display:flex;
	gap:30px;
}

.content-links > ul {
	flex:1;
	list-style:none;
	padding:0;margin:0;
}

.content-links ul > li {
	
}

.content-links ul > li.link-header {
	font-size: 1.2em;
	font-weight: 200;
	text-transform: uppercase;
	color:var(--color-text-blue-80);
}

.content-links ul > li.link-bubble-item {
	margin: 5px 0;
}

.content-links ul > li.link-bubble-item > a {
	display: flex;
	color: var(--color-text-black-70);
	gap: 15px;
	padding: 10px;
 	margin-left: -10px;
	transition:background-color 0.3s ease, color 0.3s ease;
}

.content-links ul > li.link-item > a {
	color: var(--color-text-black-70);
	padding: 5px 10px;
 	margin-left: -10px;
	transition:color 0.3s ease;
	display:block;
	font-family: 'Roboto',sans-serif;
	font-weight:600;
	font-size:1em;
}

.content-links ul > li.link-header + li.link-item {
	margin-top:10px;
}

.content-links ul > li.link-bubble-item > a > img.bubble-thumb {
	width: 54px;
	height: 54px;
	border-radius:8px;
}

.content-links ul > li.link-bubble-item > a > .bubble-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content:space-around;
}

.content-links ul > li.link-bubble-item > a > .bubble-text span.title {
	font-family: 'Roboto',sans-serif;
	font-weight:600;
	font-size:1.1em;
}

.content-links ul > li.link-bubble-item > a > .bubble-text span.text {
	
}

.content-links ul > li.link-bubble-item:hover > a {
	background-color:var(--color-bg-black-10);
	color:var(--color-text-blue-80);
}

.content-links ul > li.link-item:hover > a {
	color:var(--color-text-blue-80);
}


@media only screen and (min-width: 576px) {
	#mobile-navigation {
		padding-right:30px;
	}
	
	button#btn_mobileMenu-show {
		margin:27px auto 0;
	}

	#mobile-menu {
		top:75px;
		height:calc(100vh - 115px);
	}

	#header-body {
		box-shadow: 0 20px 30px -30px rgb(0 0 0 / 0.5);
	}

	.sticky-header {
		top:-1px;
	}

	#container-strip {
		display:block;
		height:40px;
		transition: height 0.3s cubic-bezier(.4,0,.6,1) 80ms;
	}
	
	#container-header {
		position:sticky;
		height:80px;
	}

	#logo-block {
		top:-10px;
		left:0;
	}

	#logo-eagle > a > img {
		max-height:46px;
		top:22px;
		left:30px;
		transition:top 0.3s;
	}

	.kovax-brand img {
		max-height: 50px;
		margin-left: 255px;
	}

	.stuck #logo-eagle > a > img {
		top:27px;
	}

	.menu-drawer-container {
		display:inline;
	}
}

.lock-scroll {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

@media only screen and (min-width: 890px) {
	#search-drawer {
		height: 80px;
		display:flex;
		align-items: center;
		width: 480px;
		right:0px;
		/*right: -480px;
		opacity:0;
		transition: 
			opacity 0.3s cubic-bezier(.4,0,.6,1) 80ms;*/
	}

	#search-drawer.active {
		/*opacity:1;
		transform: translateX(-480px);*/
	}
	
	#search-drawer .input-search {
		font-family: Roboto;
		font-size: 20px;
		font-weight: 300;
		border: 0px;
		background: var(--color-bg-blue);
		padding: 5px 10px 5px 25px;
		width:100%;
		flex:1;
		height:46px;
		outline:0;
		clip-path: polygon(0 0, 100% 0px, 100% 100%, 9px 100%);
	}

	#search-drawer button#search_start {
		margin-right:15px;
		height: 46px;
		border: 0px;
		background: var(--color-blue);
		color:#fff;
		width: 46px;
		padding: 0px;
		transition: background-color 0.3s;
	}

	#search-drawer button#search_cancel {
		position: absolute;
		right: 60px;
		background: none;
		border: 0px;
		height: 46px;
		width: 46px;
		color: var(--color-blue-dark);
		opacity: 0.5;
		transition: opacity 0.3s;
	}

	#search-drawer button#search_cancel:hover {
		opacity:1;
	}

	#search-drawer button#search_start:hover {
		background: var(--color-blue-dark);
	}
	
	#header-block-navigation {
		display:flex;
		width:100%;
		justify-content: flex-end;
		padding-right:30px;
	}
	
	#mobile-navigation {
		display:none;
	}

	.stuck.details-links{
		
	}
}

@media only screen and (min-width: 1050px) {
	

	ul.nav-menu {
		gap:2em;
	}
	
	ul.nav-menu li a span {
		font-size:1em;
		transition: color 0.3s, transform 0.3s cubic-bezier(0.2, 1, 0.8, 1);
	}

	ul.nav-menu li a:hover span {
		font-size:1em;
	}

	.nav-menu-hide {
		display:block;
	}

	
}


@media only screen and (min-width: 1380px) {
	.menu-drawer-slate {
		
		width:100%;
	}
}

