body {
	justify-content: flex-start;
}

.header {
	display: block;
	width: 100%;
	background: #fff;
	text-align: center;
}

.header__logo {
	width: 332px;
	height: auto;
	margin: 17px 0;
}

.content {
	box-sizing: border-box;
	width: 100%;
	padding: 10vh 5vw 0;
	text-align: center;
	white-space: nowrap;
}

.content__item {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: 50%;
	min-width: 50%;
	white-space: normal;
}

.content__text-container {
	text-align: left;
}

.content__image-container {
	text-align: right;
}

.content__image {
	width: 29vw;
}

.content__description,
.content__title {
	box-sizing: border-box;
	max-width: 435px;
	margin-left: 15px;
}

.content__title {
	font-size: 48px;
	text-transform: uppercase;
}

.content__description {
	font-size: 20px;
}

@media (max-width: 991px) {
	.header__logo {
		width: 150px;
		margin: 13px 0;
	}

	.content {
		padding: 5vh 5vw 0;
		white-space: normal;
	}

	.content__item {
		width: 100%;
		min-width: 100%;
	}

	.content__image {
		width: 40vw;
	}

	.content__image-container,
	.content__text-container {
		text-align: center;
	}

	.content__title {
		margin: 50px auto 15px;
		font-size: 32px;
	}

	.content__description {
		margin: 0 auto;
		font-size: 18px;
	}
}

@media (max-width: 450px) {
	.content__image {
		width: 60vw;
	}

	.content__title {
		margin-top: 30px;
	}
}