.header {
	background-color: rgb(91,91,197);
	background-color: #0f73ee;
	padding:30px;
	position: relative;
}

.header>span.relative {
	display: none;
}

.header .block {
	display: flex;
	justify-content: space-around;
	width: calc(100%);
}


.logo {
	max-width: 40%;
	display: flex;
	align-items: center;
	line-height: 120%;
	
}

.logo a {
	color:white;
	border-bottom: unset;
}

.logo img {
	height:100px;
	width:auto;
	margin: 0 15px 0 0;
	
}

.social img{
	height:25px;
	width: 25px;
	object-fit:contain;
}

.social {
	border-bottom: unset;
	padding:5px;
	background-color: white;
	border-radius: 30px;
	width: 25px;
    height: 25px;
    display: inline-flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
	margin: 0 5px;
}

a.button {
	padding:5px 10px;
	background-color: rgb(255,197,91);
	color:white;
	font-size: 1.5rem;
	border-bottom: unset;
	font-weight: 700;
}

.contacts {
	text-align: center;
	display: flex;
	flex-direction: column;
    align-items: center;
}

.contacts input[type=text] {
	width: calc(100%);
}

.allbuttons {
	display: flex;
	margin-top: 10px;
	flex-wrap: wrap;
}

a.button.contacts {
	line-height: 2rem;
	/*margin-bottom:10px;*/
	display: inline-block;
	position: fixed;
	bottom: 10px;
	right:10px;
	z-index:100000;
	
	-webkit-box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    -moz-box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
    box-shadow: 0px 0px 40px 0px rgba(200, 200, 200, 0.75);
}

@media screen and (max-width:600px) {
	.contacts {
		align-items: flex-start;
	}
	
	.logo img {
	height:60px;
	}
}

@media screen and (max-width:700px) {
	
	.header .block {
		flex-direction: column;
	}
	
	.logo {
		max-width: 100% !important;
	}
	
	.header .contacts {
		margin-top:5px;
	}
}