.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 10;
	transition: var(--transition--main);
}

.header.active{
	background:rgba(255,255,255,0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.header .wrap{
	position: relative;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding:0 40px;
	max-width: 100%;
}

@media (max-width: 1240px) {
	.header .wrap{
		padding: 0 30px;
	}
}

.header__item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.logo{
	display: block;
	width: 131px;
	height: 40px;
}

.logo-white__icon{
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.main-menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: var(--color--black);
	opacity: 0.7;
	margin-left: 80px;
}

.main-menu__item a{
	display: block;
	margin-right: 16px;
	border-radius: 16px;
	padding: 10px 24px;
	transition: .2s;
}

.main-menu__item a:hover{
	-webkit-box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.10);
	background: var(--color--white);
}

.header__link{
	position: relative;
	display: inline-block;
	text-decoration: none;
	color: var(--color--black);
	opacity: 1;
	background: var(--color--white);
	border-radius: 16px;
	margin-left: 10px;
	padding: 10px 24px;
	white-space: nowrap;
	-webkit-box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 8px 40px rgba(0, 0, 0, 0.10);
}

.header__link:hover{
	-webkit-box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 12px 48px rgba(0, 0, 0, 0.15);
}

.nav{
	margin-right: auto;
}

.nav-mobile__icon{
	display: none;
	position: relative;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.burger{
	width: 24px;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 8px;
}

.burger:after,
.burger:before{
	content: '';
	width: 24px;
	height: 1px;
	position: absolute;
	left: 0;
	background: var(--color--black);
	-webkit-transition: var(--transition--main);
	-o-transition: var(--transition--main);
	transition: var(--transition--main);
}

.burger:before{
	bottom: -5px;
}

.burger:after{
	top: -5px;
}

.burger.active:before{
	bottom: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.burger.active:after{
	top: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header__mobile-phone{
	position: relative;
	display: none;
	margin-left: auto;
	border-radius: 16px;
	-webkit-box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
	background: #ffffff50;
	font-size: 0;
	width: 40px;
	height: 40px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header__mobile-phone._none{
	opacity: 0;
}

.header__mobile-phone:before{
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	background-image: url(../img/icon/phone.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.active_mobile{
	background: var(--color--white)!important;
}

@media screen and (max-width: 1024px){
	.header{
		height: 80px;
	}

	.header .wrap{
		padding:0 20px;
	}

	.nav-mobile__icon{
		display: block;
	}

	.header__mobile-phone{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.header__item{
		display: none;
		position: fixed;
		top: 80px;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--color--white);
		padding: 40px 20px;
		width: 100%;
		height: 100vh;
	}

	.header__item.active{
		display: block;
	}

	.main-menu{
		margin-left: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.main-menu__item{
		margin-right: 0;
		border-bottom: 1px solid #00000070;
		border-radius: 0;
		padding: 0;
	}

	.main-menu__item a{
		display: block;
		padding: 20px 40px;
	}

	.main-menu__item:first-child{
		border-top: 1px solid #00000070;
	}

	.nav{
		margin-bottom: 40px;
	}

	.header__item:before{
		content: '';
		position: absolute; /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
		background: -o-radial-gradient(center,  ellipse,  rgba(93,106,232,0.3) 10%,rgba(93,106,232,0) 70%,rgba(93,106,232,0) 100%);
		background: radial-gradient(ellipse at center,  rgba(93,106,232,0.3) 10%,rgba(93,106,232,0) 70%,rgba(93,106,232,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4d5d6ae8', endColorstr='#005d6ae8',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
		width: 700px;
		height: 700px;
		left: -200px;
		top: 0;
	}

	.header__link{
		margin: 0 10px 10px 0;
	}

	.header__link.btn_last {
		margin-right: 0;
		width: calc(100% - 150px);
		text-align: center;
	}
}