* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html, body {
	margin: 0;
	padding: 0;
	background-color: #000;	
	height: 100%;
	color: #fff;
}
.header {
	height: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	margin-bottom: 60px;
}
.header__logo {
	background: url(motoservice71-logo.png) no-repeat center center;
	width: 859px;
	height: 297px;
	background-size: contain;
}
.header__contacts {
	list-style-type: none;
	font-size: 22px;
	padding: 15px;
	padding-right: 30px;
	float: right;
	margin-left: auto;
}
.header__contacts li {
	display: flex;
	padding: 8px;
}
.header__contacts a {
	color: #fff;
	text-decoration: none;
}

.icon {
	display: block;
	width: 32px;
	height: 32px;
	background-size: contain;
	margin: 0 8px;
}
.icon-phone {
	background-image: url(smartphone-call.png);
}
.icon-vk {
	background-image: url(vkontakte.png);
}
.main {
	max-width: 800px;
	margin: 0 auto;
	font-size: 22px;
	padding: 15px;
	margin-bottom: 60px;
}
.main p {
	padding-bottom: 14px;
}
.hello {
	font-size: 30px;
	padding-bottom: 14px;
}
.map {
	width: 100%;
}
.map__title {
	font-size: 30px;
	padding-bottom: 20px;
	text-align: center;
}
.map iframe {
	width: 100%;
}
@media screen and (max-width: 478px) {
	.header {
		margin-bottom: 0px;
		height: 450px;
	}
	.header__logo {
		width: 100%;
	}
	.header__contacts {
		margin-left: 0;
		padding: 15px;
	}
}