.header {
	background: #fff;
}

@media screen and (min-width: 768px) {
	.header {
		padding: 32px 0;
	}
}

.header__inner {
}

@media screen and (min-width: 768px) {
	.header__inner {

display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -ms-flexbox;  /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
		display: flex;
		


-webkit-justify-content: space-between;
		-webkit-align-items: flex-end;

justify-content: space-between;
		align-items: flex-end;
	}
}

.header__info {
	background: #fff;
}

@media screen and (max-width: 767px) {
	.header__info {
		position: fixed;
		padding: 35px 25px;
		right: 0;
		top: 0;
		width: calc(100vw - 25px);
		height: 100%;
		box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
		z-index: 99;
		pointer-events: none;
		opacity: 0;
		transform: translate(25px, 0);
		transition: all 0.3s;
	}

	body.mobile-menu-open .header__info {
		pointer-events: auto;
		opacity: 1;
		transform: translate(0, 0);
	}
}

@media screen and (min-width: 768px) {
	.header__info {
display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -ms-flexbox;  /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */

		display: flex;



		-webkit-flex-direction: column;
		-webkit-align-items: flex-end;

		flex-direction: column;
		align-items: flex-end;
	}
}

.header__m-inner {
display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
display: -ms-flexbox;  /* TWEENER - IE 10 */
display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */

	display: flex;


	-webkit-justify-content: space-between;
	-webkit-align-items: center;

	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
}

@media screen and (min-width: 768px) {
	.header__m-inner {
		display: block;
		padding: 0;
	}
}

.header-logo {
	display: block;
	width: 220px;
}

@media screen and (min-width: 1024px) {
	.header-logo {
		width: 262px;
	}
}

.header-phone {
	color: #00a19a;
	margin: 0 40px 2em 0;
	font-weight: 800;
	font-size: 2rem;
}

@media screen and (min-width: 768px) {
	.header-phone {
		margin: 0 0 35px;
		font-size: 2.6rem;
	}
}

.header-phone a {
	display: block;
	color: inherit;
	text-decoration: none;
}

@media screen and (min-width: 768px) {
	.header-phone a {
		display: inline;
	}
}

.main-menu {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
}

@media screen and (min-width: 768px) {
	.main-menu {
display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
		display: flex;
		gap: 0;
	}
}

.main-menu a {
	color: #97c41f;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.8rem;
	text-transform: uppercase;
}

@media screen and (min-width: 768px) {
	.main-menu a {
		font-size: 1.6rem;
		margin: 0 0 0 20px;
	}
}

@media screen and (min-width: 1024px) {
	.main-menu a {
		margin: 0 0 0 50px;
	}
}

.menu-icon {
	appearance: none;
	border: none;
	padding: 0;
	margin: 0;
	background: none;
}

@media screen and (min-width: 768px) {
	.menu-icon {
		display: none;
	}
}

.menu-icon img {
	display: inline-block;
	width: 52px;
	height: auto;
}

.menu-close {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 26px;
	height: 26px;
	transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
	.menu-close {
		display: none;
	}
}

.menu-close::before,
.menu-close::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 100%;
	height: 3px;
	border-radius: 1.5px;
	background: #000;
}

.menu-close::after {
	transform: translate(0, -50%) rotate(90deg);
}

.header--minimal .header__info,
.header--minimal .menu-icon {
	display: none !important;
}
