/* reset */


:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
header,
aside {
	display: block;
}

header{
}

button,
textarea {
	font-family: inherit;
}


button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a {
	color: inherit;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

/*-----------fonts---------*/
@font-face {
	font-family: "Noto Sans";
	src: url(./../fonts/NotoSans-Regular.ttf) format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: "Noto Sans";
	src: url(./../fonts/NotoSans-SemiBold.ttf) format('truetype');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Pelinka-Bold";
	src: url('../fonts/Pelinka-Bold.otf');
}
/*--------------------*/




/* ------------------------ */
.header__top {
	background-color: #FFE001;
	padding: 5px;
	font-family: "Noto Sans";
	font-weight: 600;
}

.header__top__list {
	display: flex;
	gap: 22px;
}

.header__top__link {
	font-size: 14px;
	font-weight: 600;
}

.header__top__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__top_search {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 220px;
	width: 100%;
	min-height: 32px;
	background-color: #FFF6B2;
	border-radius: 32px;
	position: relative;
}

.header__top_search input {
	max-width: 220px;
	width: 100%;
	min-height: 32px;
	background: none;
	padding: 3px 30px 3px 10px;
}

.header__top_search img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}

.header__middle {
	background-color: #A61729;
	font-family: "Noto Sans";
}

.header__middle__list {
	display: flex;
	align-items: center;
	gap: 21px;
	min-height: 50px;
	flex-wrap: wrap;
	row-gap: 1px;
}

.header__middle__item {
	min-height: 50px;
	display: inline-flex;
	align-items: center;
}

.header__middle__link {
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	min-height: 50px;
	display: inline-flex;
	align-items: center;
}

.header__middle_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 50px;
}

._active_link {
	padding: 0 4px;
	background: rgb(255, 86, 107);
	background: linear-gradient(90deg, rgba(255, 86, 107, 1) 0%, rgba(215, 4, 31, 1) 100%);
}

.header_middle_logo_one {
	display: block;
	max-width: 184px;
	width: 100%;
}

.header_middle_logo_two {
	display: block;
	max-width: 98px;
	width: 100%;
}

.header_middle_logo_one img,
.header_middle_logo_two img {
	width: 100%;
}

.header__bottom {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 20px;
	padding: 8px 0;
	font-family: "Pelinka-Bold";
	background-color: #000;
	color: #FFE001;
	white-space: nowrap;
	overflow: hidden;
}

.soc__link {
	display: flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	background-color: #FFE001;
	border-radius: 50%;
}

.header__bottom_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
}

.soc__link img {
	width: 16px;
	height: 16px;
}

.header__bottom__soc {
	display: flex;
	gap: 16px;
}

/* ------------------------ */



/* ------------------------ */

@media screen and (max-width:920px) {
	.header__top__list {
		display: none;
	}

	.header__top__wrap {
		justify-content: center;
	}
}

@media screen and (max-width:768px) {
	.header__middle__item {
		display: none;
	}

	.header__bottom_wrap {
		flex-direction: column;
		justify-content: center;
		gap: 15px;
	}

	.header__bottom{
		justify-content: center;
	}

	.header__bottom p:nth-child(2),
	.header__bottom p:nth-child(3),
	.header__bottom p:nth-child(4),
	.header__bottom p:nth-child(5){
		display: none;
	}
}