.header {
	position: fixed;
	z-index: 5000;
	top: 2.2rem ;
	left: 0;
	width: 100%; 
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 4.5rem;
	box-sizing: border-box;
	transition: .3s ease;
}
.header.open {
	top: 3rem;
	padding: 0 4rem;
}
.drawer_btn {
	display: none;
}
.drawer_btn:before {
	content: "MENU";
	font-family: 'PPNeueMontreal';
	font-weight: 500;
	font-size: 1.3rem;
	color: #fff;
	letter-spacing: .01em;
}
.header.open .drawer_btn:before {
	content: "CLOSE";
}
.header_logo {
	width: 6.4rem;
	height: 4.5rem;
	display: block;
	transition: .3s;
}
.header_logo.hide {
	opacity: 0;
}
.header_logo::before {
	content: "";
	mask: url(../img/logo.svg) no-repeat center;
	mask-size: cover;
	width: 6.4rem;
	height: 4.5rem;
	background: #fff;
	display: block;
}
.header.open .header_logo {
	opacity: 1 !important;
}
.header.open .header_logo::before {
	background: linear-gradient(46deg,rgba(167, 143, 69, 1) 0%, rgba(213, 197, 135, 1) 50%, rgba(167, 143, 69, 1) 100%);
}
.header_right {
	display: flex;
	align-items: center;
	gap: 8rem;
}
.header_list {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}
.header_list_item_link {
	font-family: 'PPNeueMontreal';
	font-weight: 500;
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: .01em;
}
.header_instagram {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	background-color: #856D47;
	border-radius: 100vmax;
	padding: .5rem 2rem;
}
.header_instagram_icon {
	width: 1.5rem;
	height: 1.5rem;
}
.header_instagram_icon::before {
	content: "";
	mask: url(../img/instagram.svg) no-repeat center;
	mask-size: cover;
	width: 1.5rem;
	height: 1.5rem;
	background-color: #fff;
	display: block;
}
.header_instagram_text {
	font-family: 'PPNeueMontreal';
	font-weight: 500;
	font-size: 1.4rem;
	color: #fff;
}
.header.black .header_list_item_link {
	color: #303030;
}
.header.black .drawer_btn:before {
	color: #303030;
}
.header.open .drawer_btn:before {
	color: #fff !important;
}
.header.black .header_logo::before {
	background: linear-gradient(46deg,rgba(167, 143, 69, 1) 0%, rgba(213, 197, 135, 1) 50%, rgba(167, 143, 69, 1) 100%);
}
@media (min-width: 1025px) {
	

}


@media (max-width: 1024px) {
	.header {
		top: 1.6rem;
		padding: 0 2.2rem;
		display: grid;
		grid-template-columns: 1fr 4.3rem 1fr;
	}
	.drawer_btn {
		display: block;
		order: 3;
		margin-left: auto;
	}
	.header_logo {
		width: 4.3rem;
		height: 3rem;
		order: 2;
	}
	.header_logo::before {
		width: 4.3rem;
		height: 3rem;
	}
	.header_right {
		display: contents;
	}
	.header_list {
		display: none;
	}
	.header_instagram {
		order: 1;
		background-color: transparent;
		padding: 0;
		display: inline-block;
	}
	.header_instagram_icon {
		width: 1.8rem;
		height: 1.8rem;
	}
	.header_instagram_icon::before {
		width: 1.8rem;
		height: 1.8rem;
	}
	.header_instagram_text {
		display: none !important;
	}
	.header.black .header_instagram_icon::before {
		background-color: #303030;
	}
	.header.open .header_instagram_icon::before {
		background-color: #fff !important;
	}
}