* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*::before,
*::after {
	box-sizing: border-box;
}

ul {
	list-style: none;
}

html {
	height: 100%;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

body {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100%;
	font-family: Roboto, Arial, Helvetica, sans-serif;
	background: #050505;
}

.container {
	max-width: 1000px;
	padding: 0 10px;
	margin: 0 auto;
}

.header {
	background: #222;
}

.header__container {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 50px;
}

.header__logo {
	height: 16px;
	width: 99px;
	background: url(../images/logo.svg) center center no-repeat;
}

.main {
	padding: 50px 0;
	flex: 1 0 auto;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: url(../images/dont-ragequit.jpg) calc(50% + 200px) center no-repeat;
}

.main__container {
	width: 100%;
}

.main__title {
	max-width: 340px;
	font-size: 36px;
	color: #44d62c;
}

.footer {
	background: #222;
	padding: 50px 0;
	font-size: 13px;
	font-weight: 300;
	color: #888;
}

.footer__container-inner {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 530px;
}

.footer-item {
	margin-right: 30px;
}

.footer-item:last-child {
	margin-right: 0;
}

.footer-item-title {
	display: block;
	color: #fff;
	font-weight: 500;
	font-size: 13px;
	margin-bottom: 7px;
}

.footer-list-item {
	margin-bottom: 7px;
}

.footer-list-item:last-child {
	margin-bottom: 0;
}

.footer-list-item__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

.footer-list-item__link {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	text-decoration: none;
	color: #888;
}

.footer-list-item__link:hover {
	color: #fff;
}

.footer-list-item__title {
	padding-top: 3px;
}

.footer-item-contacts__content {
	line-height: 1.55;
}

.footer-item-contacts a[href^="tel:"] {
	text-decoration: none;
	color: #888;
}

.footer-item-contacts a[href^="tel:"]:hover {
	color: #fff;
}

.footer-item-contacts a[href^="mailto:"] {
	text-decoration: none;
	color: #44d62c;
}

@media (max-width: 767px) {
	.main {
		padding-top: 85%;
		padding-bottom: 40px;
		background-position: center top;
		-webkit-background-size: contain;
		background-size: contain;
	}

	.main__title {
		max-width: none;
		text-align: center;
	}

	.footer {
		padding: 40px 0;
	}
}

@media (max-width: 479px) {
	.footer__container-inner {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-justify-content: flex-start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	.footer-item-contacts {
		order: -1;
		margin-bottom: 30px;
	}

	.footer-item {
		margin-right: 0;
	}
}