.ocera-header{
	background:var(--ocera-bg);
	padding:18px 0;
}
.ocera-header__inner{
	max-width:100%;
	margin:0 auto;
	padding:0 1vw;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:24px;
}
.ocera-header__logo img{height:38px;width:auto;}

.ocera-header__nav{
	display:flex;
	justify-content:center;
}

.ocera-header__nav ul{
	display:flex;
	gap:32px;
}
.ocera-header__nav a{
	color:var(--ocera-white);
	font-size:15px;
}
.ocera-header__nav a:hover{color:var(--ocera-gold);}

.ocera-header__actions{
	display:flex;
	gap:14px;
}

.ocera-header__logo-mobile{display:none;}

.ocera-header__burger{
	display:none;
	background:none;
	border:none;
	cursor:pointer;
	padding:0;
}
.ocera-header__burger img{width:28px;height:28px;display:block;}

@media (max-width:768px){
	.ocera-header{
		position:absolute;
		top:0;left:0;right:0;
		background:transparent;
		z-index:20;
		padding:20px 0;
	}
	.ocera-header__nav,
	.ocera-header__actions,
	.ocera-header__logo{display:none;}
	.ocera-header__logo-mobile{display:flex;}
	.ocera-header__logo-mobile img{height:34px;width:auto;}
	.ocera-header__burger{display:flex;}
	.ocera-header__inner{padding:0 20px;}
}
