body {
	background-image: url("/assets/images/maintenance.png");
	background-position: top;
	background-size: cover;
	justify-content: flex-start;
}

.header {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 120px;
	background-color: #1a1a1c;
	box-shadow: 0 1px 13px 0 rgba(0, 0, 0, 0.33);
}

.header__logo {
	height: 83px;
}

.content {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	white-space: nowrap;
}

.content__text-container {
	margin-top: 25px;
	white-space: normal;
}

.content__title {
	max-width: 570px;
	margin: 30px 0 43px;
	font-weight: bold;
	font-size: 32px;
	line-height: 38px;
	text-transform: uppercase;
}

em {
	margin-left: 10px;
	color: #dac15b;
	font-style: normal;
}

.content__description {
	max-width: 550px;
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 21px;
}

@media (max-width: 991px) {
	body {
		background-image: url("/assets/images/maintenance-tablet.png");
	}

	.header {
		height: 97px;
	}

	.content__text-container {
		padding: 0 22px;
	}
}

@media (min-width: 449px) {
	.content {
		flex-grow: 1;
	}
}

@media (max-width: 449px) {
	body {
		background-image: url("/assets/images/maintenance-mobile.png");
	}

	.content__title {
		font-size: 24px;
		line-height: 28px;
	}

	.header {
		height: 106px;
	}

	em {
		margin: 0;
	}
}