.header {
}
.header__top {
	display: none;
	background-color: #c00;
	color: #fff;
}
.header__top-wrapper {
	padding-left: 10px;
	padding-right: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 58px;
}
.header__top-left {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
}
.burger {
	position: relative;
	display: flex;
	align-items: center;
	width: 24px;
	height: 24px;
}
.burger > span,
.burger > span::before,
.burger > span::after {
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #fff;
}
.burger > span::before {
	content: '';
	top: -8px;
}
.burger > span::after {
	content: '';
	top: 8px;
}
.header__top-logo {
	display: block;
}
.header__top-logo-svg {
	width: 177px;
	height: 34px;
	fill: #fff;
}
.header__top-right {
	display: flex;
	align-items: center;
	gap: 20px;
}
.subscribe {
	padding: 3px 8px;
	margin-right: 5px;
	display: inline-block;
	background: #fff;
	border-radius: 2px;
	line-height: 1;
	color: #c00;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	line-height: 15px;
	font-family: sans-serif;
}
.login {
	color: #fff;
}
.login__svg {
	width: 18px;
	height: 20px;
}
.header__logo-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 105px;
}
.header__logo .back {
	fill: #e0081d;
}
.header__logo:not(.back) {
	fill: #fff;
}
.header__main {
	padding-left: 10px;
	background-color: #c00;
	color: #fff;
}
.header__logo {
	width: 205px;
	max-height: 95px;
	height: 100%;
}
.header__menu {
}
.menu__list {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 36px;
	padding: 0;
	margin: 0;
	list-style: none;
}
.menu__item {
	padding-right: 5px;
	padding-left: 5px;
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 0.6px;
	border-right: 1px solid #e65757;
	font-weight: 700;
	font-family: sans-serif;
}
.menu__link {
	color: white;
}
.menu__link--first {
	color: #000;
}
.header__bot {
	background-color: #f4f4f4;
	height: 45px;
	white-space: nowrap;
}
@media screen and (max-width: 893px) {
	.header__bot {
		overflow-x: scroll;
	}
}
.header__bot-nav {
	padding: 0 25px;
	text-align: center;
	font-style: italic;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 1008px) {
	.header__bot-nav img {
		display: none;
	}
	.header__bot-nav {
		justify-content: stretch;
	}
}
.header__bot-link {
	padding: 0 10px;
	font-weight: 500;
	font-size: 14px;
	line-height: 45px;
	color: black;
}
@media (max-width: 720px) {
	.header__top {
		display: block;
	}
	.header__logo-wrapper {
		display: none;
	}
	.header__main {
		display: none;
	}
}
@media (max-width: 390px) {
	.header__top-left,
	.header__top-right {
		gap: 5px;
	}
	.header__top-logo-svg {
		width: 140px;
		height: 25px;
	}
	.subscribe {
		font-size: 10px;
	}
}
