.header{
	width: 300px;
	height: 100vh;
	background-color: #11255f;
	padding: 0px;
	margin: 0px;
	text-align: center;
	position: fixed;
	top:0px;
	left: 0px;
	z-index: 10000;
}

.header .logo{
	width: 100%;
	text-align: center;
	padding: 10px 0px;
}


.header .text{
	width: 100%;
	text-align: center;
	padding:10px 20px;
	border-top:1px solid #fff;
	border-bottom:1px solid #fff;
}
.header .text p{
	margin: 0px;
	font-size: 14px;
	color: #fff;
}


.header .header_nav{
	width: 100%;
	margin: 0px;
	padding: 0px;
}



.header .header_nav  .header__list{
	padding:20px 0px;
	list-style-type: none;
	margin: 0px;
}

.header .header_nav li.header__list-item {
	margin: 0px;
	padding: 7px 10px;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	line-height: 18px;
	color: #fff;
	background: url(../img/icon/menu.png) no-repeat;
	background-size: 0px;
	background-position: right center;
	transition: 0.5s;
	min-height: 50px;
}



.header .header_nav li.header__list-item img{
	width: 35px;
	margin-right: 5px;
	margin-left: 0px;
	transition:0.5s;
}

.header .header_nav a{
	color: #fff;
}


.header .header_nav li.header__list-item:hover{
	background-size: 40px;
	background-position: right center;
	background-color: #0005;
	color: #ff00f6;
}


.header .header_nav li.header__list-item:hover img{
	margin-left: 20px;
	transform: rotate(360deg)
}

.header .header_nav li.header__list-item.active{
	background-size: 40px;
	background-position: right center;
	background-color: #0005;
	color: #ff00f6;
}
.header .header_nav li.header__list-item.active img{
	margin-left: 20px;
	transform: rotate(360deg)
}

.header .form{
	list-style-type: none;
	margin: 0px;
	padding:20px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header .form  a{
	margin: 0px 10px;
}


.agatech{
	width: 100%;
	text-align: center;
	font-size: 10px;
	color: #fff;
}

.agatech p{
	margin: 0px;
}
.agatech img{
	width: 70px;
	transition: 0.3s;
}


.agatech img:hover{
	transform: scale(1.1);
}

.burger-menu {
	display: none;
}

header .phone a:hover {
	text-decoration: underline;
	cursor: pointer;
}

@media (max-width: 1200px) {
	.menu .nav {
		padding: 10px!important;
	}
}

@media (max-width: 1024px) {
	.menu, .phone, .logo {
		display: none;
	}

	.burger-menu {
		display: block;
	}

	header .footer__links {
		margin-top: 30px;
		justify-content: center;
	}
}