.header {
	position: fixed;
	top: 0rem;
	left: 0rem;
	width: 100%;
	background-color: var(--cl3);
/* 	padding: clamp(1rem,2vw,1.6rem) 0; */
	z-index: 1;
	height: var(--header-height);
	border-bottom: 1px solid var(--cl1);
	
}
.header__inner {
/* 	max-width: var(--max-content-width); */
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-left: var(--indent-sides);
	padding-right: var(--indent-sides);
	height: 100%;
	
}
.header__logo {
	position: relative;
	z-index: 4;
	display: block;
	height: 60%;
	
}
.header__logo-img {
	display: block;
	height: 100%;
	width: auto;
	
}
.header__nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: clamp(2rem,2vw,3rem);
	
}
.header__toggle {
	font-size: var(--md);
	line-height: var(--lh-md);
	color: white;
	z-index: 3;
	position: relative;
	text-decoration: none;
	
}
.header__menu-dt {
	display: none;
	
}
.header__menu-dt ul {
	display: flex;
	list-style-type: none;
	margin: 0rem;
	padding: 0rem;
	gap:  clamp(2rem,2vw,4rem);
}
.header__menu-dt ul li {
	
}
.header__menu-dt ul li a {
	text-decoration: none;
	font-size: var(--md);
	line-height: var(--lh-md);
	color: white;
	transition: color .3s ease;
	
}
.header__menu-dt ul li.current_page_item a {
	color: var(--cl1);
	
}
.header__menu-dt ul li a:hover {
	color: var(--cl1);
	
}
.header__menu-dt ul li:first-of-type {
	display: none;
	
}
.header__btn {
	display: none;
	
}
.header__overlay {
	position: absolute;
	left: 0rem;
	top: 0rem;
	width: 100%;
	height: 100vh;
	background-color: var(--cl3);
	z-index: 1;
	pointer-events: none;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	
}
.menu-active .header__overlay {
	opacity: 1;
	pointer-events: auto;
	
}
.header__menu-m ul {
	display: flex;
	list-style-type: none;
	margin: 0rem;
	padding: 0rem;
	gap:  clamp(2rem,2vw,4rem);
	flex-direction: column;
	
}
.header__menu-m ul li.current_page_item a {
	color: var(--cl1);
	
}
.header__menu-m ul li a {
	text-decoration: none;
	font-size: var(--xl);
	line-height: var(--lh-xl);
	color: white;
	transition: color .3s ease;
	
}
.header__menu-m ul li a:hover {
	color: var(--cl1);
	
}
.header__contact {
	flex-direction: row;
	align-items: center;
/* 	border: 1px solid white; */
	justify-content: center;
	display: none;
	gap: clamp(.1rem,.2vw,.2rem);
	margin-left: -.5rem;
}
.header__contact a {
	display: block;
	text-decoration: none;
/* 	border: 1px solid yellow; */
	padding: clamp(.1rem,.3vw,.5rem);
	transition: transform .3s ease;
	
}
.header__contact a:hover {
	transform: translateY(-.2rem);
	
}
.header__contact a img {
	display: block;
	
}
@media screen and (min-width: 500px){
	.header__btn {
		display: block;
		
	}
	
}
@media screen and (min-width: 768px){
	.header__contact {
		display: flex;
		
	}
	
}


@media screen and (min-width: 992px){
	.header__menu-dt {
		display: block;
		
	}
	.header__toggle {
		display: none;
		
	}
	
}
