.main-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}

.main-header.on {
	position: fixed;
	top: 0px;
}

.main-header-inner-wrapper {
	position: relative;
	overflow: hidden;
}

.main-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #4372e9;
}

.main-menu {
	position: fixed;
	display: flex;
	top: 0;
	right: 0;
	left: 200%;
	width: 100%;
	height: 100vh;
	transition: left 0.3s ease-in;
}

.menu-open .main-menu {
	left: 0;
}

.menu-open .main-header-inner-wrapper {
	height: 100vh;
}

.menu-open.main-header {
	background-color: transparent;
}

.close-menu-icon-cont {
	padding: 20px;
	background-color: #ffdb10;
	align-self: flex-start;
	cursor: pointer;
}

.open-menu-icon-cont {
	padding: 20px 18px;
	cursor: pointer;
}

.open-menu-icon {
	display: block;
	width: 24px;
	height: 20px;
	background: center no-repeat url(../img/icons/menu-icon-white.svg);
}

.close-menu-icon {
	display: block;
	width: 20px;
	height: 20px;
	background: center no-repeat url(../img/icons/cross.svg);
}

.main-menu__inner {
	flex-grow: 1;
	font-family: "Druk Text Wide Cyr";
	font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	background-color: #4372e9;
}

.main-menu__inner .main-logo-cont {
	margin-bottom: 52px;
}

.main-menu__links-list {
	padding: 0 16px;
	text-transform: uppercase;
}

.main-menu__links-list-item:not(:last-child) {
	margin-bottom: 32px;
}

.main-menu__links-list-item .main-menu__links {
	text-decoration: none;
	color: #fff;
	transition: color 0.2s ease-out;
}

.main-menu__links-list-item .main-menu__links:active {
	color: inherit;
}

.donate-btn {
	display: inline-block;
	margin: 48px 13px 0;
	min-width: 182px;
	padding: 14px 29px 16px;
	text-decoration: none;
	color: #000;
	background-color: #ffdb10;
	border-radius: 29px;
	font-weight: 500;
	font-size: 16px;
	height: 46px;
	font-family: "Druk Text Wide Cyr";
	transition: background-color 0.3s ease;
}

.main-header,
.main-header .main-header-inner,
.main-header .main-menu__inner {
	transition: background-color 0.4s ease;
}

.main-header.white-header .main-header-inner {
	background-color: #fff;
}

.main-header.yellow-header .main-header-inner {
	background-color: #ffdb10;
}

.main-header.white-header .main-header-inner .main-logo,
.main-header.yellow-header .main-header-inner .main-logo {
	background: center no-repeat url(../img/icons/logo-gw-black.svg);
	background-size: contain;
}

.main-header.white-header .open-menu-icon,
.main-header.yellow-header .open-menu-icon {
	background: center no-repeat url(../img/icons/menu-icon-black.svg);
	background-size: contain;
}

.donate-bottom {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #4372e9;
	z-index: 80;
}
.donate-bottom .donate-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 300px;
	margin: 13px auto;
}
@media screen and (min-width: 768px) {
	.donate-bottom {
		display: none;
	}
}
@media screen and (min-width: 1024px) {
	.main-header {
		top: 32px;
		background-color: #4372e9;
	}

	.main-header-inner-wrapper {
		max-width: 1172px;
		padding: 16px 64px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}

	.open-menu-icon-cont,
	.close-menu-icon-cont,
	.main-menu__inner .main-logo-cont {
		display: none;
	}

	.main-header-inner .main-logo {
		width: 138px;
		height: 28px;
	}

	.main-menu {
		display: flex;
		position: static;
		height: auto;
		width: auto;
	}

	.main-menu__links-list {
		display: flex;
		align-items: center;
		padding: 0;
	}

	.main-menu__inner {
		display: flex;
		align-items: center;
	}

	.main-menu__links {
		padding: 16px 0;
	}

	.main-menu__links-list-item:not(:last-child) {
		margin-bottom: 0;
	}

	.main-menu__links-list-item:nth-child(1) {
		width: 104px;
		margin-right: 28px;
	}

	.main-menu__links-list-item:nth-child(2) {
		width: 123px;
		margin-right: 39px;
	}

	.main-menu__links-list-item:nth-child(3) {
		width: 130px;
	}

	.main-menu__links-list {
		margin-right: 74px;
		height: 46px;
	}

	.donate-btn {
		margin: 0;
	}

	.main-menu__links-list-item .main-menu__links:hover {
		color: #000;
	}

	.main-header.white-header,
	.main-header.white-header .main-menu__inner {
		background-color: #fff;
	}

	.main-header.yellow-header,
	.main-header.yellow-header .main-menu__inner,
	.main-header.yellow-header .main-header-inner {
		background-color: #ffdb10;
	}
	.main-header.yellow-header .donate-btn {
		background-color: #fff;
	}
	.main-header.white-header .main-menu__links-list-item .main-menu__links,
	.main-header.yellow-header .main-menu__links-list-item .main-menu__links {
		color: #000;
	}
	.donate-btn {
		transition: box-shadow 0.3s ease;
	}
	.donate-btn:hover {
		box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
	}
}
