.header {
	/*width:95%;
	max-width: 1200px;
	margin: 0 auto;*/
	
	display: flex;
	justify-content: space-between;
	align-items: center;
	
	backdrop-filter: blur(10px);
	
	background-color: rgba(230,230,230,0.6);
	
	width:calc(100% - 40px);
	position: fixed;
	top:0;
	left:0;
	padding:0px 20px;
	z-index:100000;
	
	-webkit-box-shadow: 0px 0px 8px 0px rgba(206, 206, 206, 1);
-moz-box-shadow: 0px 0px 8px 0px rgba(206, 206, 206, 1);
box-shadow: 0px 0px 8px 0px rgba(206, 206, 206, 1);

}



.header_html>.block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	
	font-size: 2em;
	margin:20px;
	display: flex;
	align-items: center;
	
}

.logo span:nth-child(1) {
	color: #D05353;
	color: black;
	font-weight: 900;
}

.logo span:nth-child(2) {
	color: black;
	font-weight: 900;
}

.logo img {
	height:60px;
	width:auto;
	margin-left: 10px;
}

.header .block {
	padding: 20px 0 22px 30px;
}


.phones {
	width:40%;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin:5px 0;
	text-align: right;
}

.phones img {
	height: 18px;
	width:auto;
	vertical-align: middle;
}

.phones a, .phones span  {
margin:3px;
}

.mobilephones {
	display:none;
	position:fixed;
	top:0;
	left:0;
	z-index:10000000;
}

.mobilephonesbutton {
	display: none;
	position: fixed;
	top:22px;
	right:50px;
	z-index:100000;
	border-bottom: unset;
}

.mobilephonesbutton img {
	height:30px;
	filter: drop-shadow(0px 0px 1px #000000);
}

.menu img {
	height:24px;
	vertical-align: middle;
}

.menu span:has(img) {
	border-bottom: unset !important;
}


@media screen and (max-width:900px) {
	.header {
		flex-flow: column nowrap;
	}
	
	.logo {
		margin:20px 0;
		width:100%;
	}
	
	.mobilephonesbutton {
		display: block;
	}
	
	ul.topmenu>li:last-child {
		display: none;
	}
}